Hello
Im new to the forum so go easy on me
I have probably whats a very simple question, but i have spent hours researching, modifying code and still cant get it to do exactly what i need.
I basically have a front sheet which has a few macro buttons and then 3 other data entry sheets/reports.
on my front screen i have a "Save Report" button, once the user presses that button i want the "save as" dialog box window to come up so they can pick there own save location, but i want the file name to be what ever is cells (C15) and (H15) followed by todays date which is on another sheet called "Data_Entry"
so far i have only got to this, this fetches up the dialog box which i want with todays date in the file name, but i need to change the ActiveCell.Value bit.
Sub DoSave()
Application.Dialogs(xlDialogSaveAs).Show "C:\Temp\" & ActiveCell.Value & " - " & Format(Date, "ddmmyyyy") & ".xls"
End Sub
Hope someone can help me asap.
thanks
Mick
Im new to the forum so go easy on me
I have probably whats a very simple question, but i have spent hours researching, modifying code and still cant get it to do exactly what i need.
I basically have a front sheet which has a few macro buttons and then 3 other data entry sheets/reports.
on my front screen i have a "Save Report" button, once the user presses that button i want the "save as" dialog box window to come up so they can pick there own save location, but i want the file name to be what ever is cells (C15) and (H15) followed by todays date which is on another sheet called "Data_Entry"
so far i have only got to this, this fetches up the dialog box which i want with todays date in the file name, but i need to change the ActiveCell.Value bit.
Sub DoSave()
Application.Dialogs(xlDialogSaveAs).Show "C:\Temp\" & ActiveCell.Value & " - " & Format(Date, "ddmmyyyy") & ".xls"
End Sub
Hope someone can help me asap.
thanks
Mick