Adding code right after the "Save As" dialog box

  • Thread starter Thread starter Jess
  • Start date Start date
J

Jess

I have created an excel application whose footer has -apart from other
things- the full path and file name where the excel workbook resides.

I would like this information (fullpath + file name) to be reflected in the
footer when my user clicks on “Save asâ€. How can I invoke an event and make
decisions –change the footer- based upon what my user has entered in Save As?
 
The ThisWorkbook module has a BeforeSave event for ThisWorkbook where you
should be able to do that in.
 
Back
Top