Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Daniel
Another way: Sub SaveFileCode() Dim vF As Variant Dim sFil As String Dim ForcedName As String ForcedName = "XYZ.xls" vF = Application.GetSaveAsFilename(ForcedName, _ "Excel workbook (*.xls), *.xls") If vF = False Then Exit Sub sFil = CStr(vF) If Right$(sFil, Len(ForcedName) + 1) < "\" & ForcedName Then _ sFil = Left$(sFil, InStrRev(sFil, "\")) & ForcedName MsgBox "User chose " & sFil & _ ". This code did not save the file" If Dir(sFil) < "" Then MsgBox "btw " & sFil & _ " already exists. Ask to overwrite." End Sub HTH. Best wishes Harald "Daniel Bonallack" skrev i melding ... I want to direct the user to save the file as a certain name, but the user should to be able to browse the directory and choose where to save it. For example, I want the user to have to save the file as "XYZ.xls". Can someone provide the code that allows freedom on the save path, but not on the file name? Thanks in advance Daniel Bonallack |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
SaveAs dialog | Excel Discussion (Misc queries) | |||
Supress SaveAs dialog box? | Excel Programming | |||
Disable Saveas Dialog | Excel Programming | |||
Saveas Dialog Box | Excel Programming | |||
SaveAs Dialog Arguments | Excel Programming |