#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 163
Default Macro to save as

Hi below is the code I use to create a macro for when pressed the user is
asked to save as.

Is they anyway I can call the file a certain cell name for example what ever
is in A7 and also state the date instead of the user typing the file name.

Also I would like to default the location to a specific place.

Dim flToSave As Variant 'brings up save as dialogue filling in file name
with Job number
Dim flName As String
Dim flFormat As Long

flFormat = ActiveWorkbook.FileFormat
flToSave = Application.GetSaveAsFilename(flName, filefilter:="Excel
Files (*.xls),*.xls", _
Title:="Save File As...")

If flToSave = False Then
Exit Sub
Else
ThisWorkbook.SaveAs Filename:=flToSave, FileFormat:=flFormat
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,520
Default Macro to save as

Somthing like the below

Dim strFolder As String
Dim strFile As String

strFolder = "c:\"
strFile = Worksheets("Sheet1").Range("A1")

ThisWorkbook.SaveAs Filename:=strFolder & strFile, _
FileFormat:=ActiveWorkbook.FileFormat

If this post helps click Yes
---------------
Jacob Skaria


"Neil Holden" wrote:

Hi below is the code I use to create a macro for when pressed the user is
asked to save as.

Is they anyway I can call the file a certain cell name for example what ever
is in A7 and also state the date instead of the user typing the file name.

Also I would like to default the location to a specific place.

Dim flToSave As Variant 'brings up save as dialogue filling in file name
with Job number
Dim flName As String
Dim flFormat As Long

flFormat = ActiveWorkbook.FileFormat
flToSave = Application.GetSaveAsFilename(flName, filefilter:="Excel
Files (*.xls),*.xls", _
Title:="Save File As...")

If flToSave = False Then
Exit Sub
Else
ThisWorkbook.SaveAs Filename:=flToSave, FileFormat:=flFormat

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Macro to save as

You're mixing ThisWorkbook and Activeworkbook. I'd be more careful with those.
The activeworkbook doesn't need to be ThisWorkbook.

Option Explicit
Sub testme01()

Dim flToSave As String
Dim flFormat As Long

With ActiveWorkbook 'or thisworkbook
flFormat = .FileFormat

'include a path, date, extension????
flToSave = .Path & "\" & .Worksheets("somesheet").Range("A7").Value _
& "_" & Format(Date, "yyyymmdd") & ".xls"

'no prompt for overwriting an existing file???
Application.DisplayAlerts = False
On Error Resume Next 'just in case the name isn't valid
.SaveAs Filename:=flToSave, FileFormat:=flFormat
If Err.Number < 0 Then
MsgBox "not saved" & vbLf & Err.Number & vbLf & Err.Description
Err.Clear
End If
On Error GoTo 0
Application.DisplayAlerts = True

End With

End Sub


Neil Holden wrote:

Hi below is the code I use to create a macro for when pressed the user is
asked to save as.

Is they anyway I can call the file a certain cell name for example what ever
is in A7 and also state the date instead of the user typing the file name.

Also I would like to default the location to a specific place.

Dim flToSave As Variant 'brings up save as dialogue filling in file name
with Job number
Dim flName As String
Dim flFormat As Long

flFormat = ActiveWorkbook.FileFormat
flToSave = Application.GetSaveAsFilename(flName, filefilter:="Excel
Files (*.xls),*.xls", _
Title:="Save File As...")

If flToSave = False Then
Exit Sub
Else
ThisWorkbook.SaveAs Filename:=flToSave, FileFormat:=flFormat


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Macro to Insert Current Date into cell - Macro to "Save As" Guy[_2_] Excel Worksheet Functions 4 December 12th 08 08:20 PM
Macro Will Not Save sonia5880 Excel Discussion (Misc queries) 2 November 4th 08 05:18 PM
MACRO SAVE HELP DP7 Excel Worksheet Functions 2 October 17th 07 08:01 PM
Macro to Save without the Save Message Ellen G Excel Discussion (Misc queries) 4 February 23rd 07 08:52 PM
Macro to save John Excel Worksheet Functions 2 April 29th 05 12:38 AM


All times are GMT +1. The time now is 12:05 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"