Is it possible to run 2 actions when selecting option on a msgbox?
What I need this to do is call another macro (called 'offsetCell') and then also exit the sub?
Thanks
Code:
If MsgBox("No issues reported" & vbNewLine & vbNewLine & "Comments must be added on the 'On going issues' sheet", vbOKOnly) = vbOK Then Call offsetCell
What I need this to do is call another macro (called 'offsetCell') and then also exit the sub?
Thanks