A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi Jacob
Presumably the macro runs when a new file is opened from the template? If so, put something like this at the end of the macro:
Application.DisplayAlerts = False
ActiveWorkbook.SaveAs "C:\My File.xlsx", xlOpenXMLWorkbook
Application.DisplayAlerts = True
Setting DisplayAlerts to False stops the warning from being displayed.
Obviously replace the path & filename with something appropriate. If you want to prompt the user to choose the file name & path you will need to adopt something like this to retrieve it.
Cheers
Jeff