Hey all!
So I'm just learning VBA, but I have a decent understanding of basic concepts. I'm having issues with a SaveAs Dialog filling out correctly.
I've noticed that whenever I try to run the following macro with an older .xls workbook it does not automatically populate.
strName, TeamName, and Week are all strings that are being referenced from code above.
The issue is that all of the timesheets that I'm collecting are sent in as .xls workbooks.
So I'm just learning VBA, but I have a decent understanding of basic concepts. I'm having issues with a SaveAs Dialog filling out correctly.
I've noticed that whenever I try to run the following macro with an older .xls workbook it does not automatically populate.
strName, TeamName, and Week are all strings that are being referenced from code above.
Code:
Application.Dialogs(xlDialogSaveAs).Show _
("K:\users\currentuser\timeshts\" & strName & "-" & TeamName & "-Week" & Week & ".xlsx")
The issue is that all of the timesheets that I'm collecting are sent in as .xls workbooks.