Hello, VBA Nation. I am using Excel for Mac 2016. I would like a Shape to popup and disappear in a few seconds after a macro is finished. It works in Step Into mode, but does not when is attached to a button or ran from VBA Editor.The Shape does not want to appear. I will appreciate any input.
Sub PopupAndGo()
' Popup is a Shape with a text
With ActiveSheet
.Shapes("Popup").Visible = msoCTrue
Application.Wait Now + TimeSerial(0, 0, 5)
.Shapes("Popup").Visible = msoFalse
End With
End Sub
Sub PopupAndGo()
' Popup is a Shape with a text
With ActiveSheet
.Shapes("Popup").Visible = msoCTrue
Application.Wait Now + TimeSerial(0, 0, 5)
.Shapes("Popup").Visible = msoFalse
End With
End Sub