Hi folks,
I can't quite figure this out, but I think (hope) I'm close. I'm trying to force the Save As dialog box to change to the "T:\SUPERVISORS REPORTS" directory after the rest of the code is finished. I'm just not quite sure where (or if that's even the correct way to do it) to put the second line of the code below (The "ChDir" line).
If anyone can fix this up, or tell me how to...or if you have another, better way, I'm all for that too.
Thank you for any help you can give
I can't quite figure this out, but I think (hope) I'm close. I'm trying to force the Save As dialog box to change to the "T:\SUPERVISORS REPORTS" directory after the rest of the code is finished. I'm just not quite sure where (or if that's even the correct way to do it) to put the second line of the code below (The "ChDir" line).
If anyone can fix this up, or tell me how to...or if you have another, better way, I'm all for that too.
Code:
Application.Dialogs(xlDialogSaveAs).Show (StrConv(TextBox1.Value, vbProperCase) & " " & Format(Year(Now()), yyyy) & ".xlsm")
ChDir "T:\SUPERVISOR REPORTS"
Thank you for any help you can give