How to get a message pop up when a macro has run?

  • Thread starter Thread starter LousieRobinson
  • Start date Start date
L

LousieRobinson

I have a simple macro which transfers a persons details to a different page.
It runs by clicking a button. I would now like to have a message pop up when
the macro has run maybe in a pop up box. Is this possible?
 
One way:

Put this line of code just before the End Sub line:

MsgBox "Macro has finished running"
 
Back
Top