I want users to get the option to save their workbook (if they have made any changes) at the beginning of my macro. How can I achieve this?
I've tried:
ThisWorkbook.Save
but unfortunately it doesn't generate any prompt.
I've also tried:
ThisWorkbook.Save(ThisWorkbook.FullName)
but it asks users if they are sure that they want to overwrite the existing file - so it gives a different prompt than the one I want.