A
Andy
I have a spreadsheet that contains a value which I would like to turn into the Filename Prompt in the Save As... Dialog box.
How do you do this?
How do you do this?
Andy said:Thanks for the reply. I tried creating a Macro like...
Sub Filename_Prompt_Improver()
'
' Filename_Prompt_Improver Macro
' Macro recorded 28/06/2004
'
Application.Dialogs(xlDialogSaveAs).Show _
arg1:=ActiveWorkbook.Worksheets("Quotation").Range("J3").Value & ".xls"
End Sub
Nothing happenned. When I opened the SaveAs ... dialog box, there was still the [template's name].xls. BTW the file is .xlt if that makes any difference.
Dave Peterson said:Like in a macro???
Application.Dialogs(xlDialogSaveAs).Show _
arg1:=ActiveWorkbook.Worksheets("sheet1").Range("a1").Value & ".xls"