I know this code below will appear at the bottom left corner of excel in the Status Bar indicating the status of the macro running.
I am curious, just would be a kinda cool thing to show like a watermark or something that appears in LARGE font in the middle of the screen showing the macro running. It will serve both a cosmetic and functional purpose. Functionally it will let people not familiar with macros to know when they are done, I know the status bar works, but could it be possible? A tough Challenge.
Code:
Sub Pivot_Table_Refresh()
Application.StatusBar = "Working..."
.
.
Rest of code
.
.
Application.StatusBar = "Ready"
End Sub
I am curious, just would be a kinda cool thing to show like a watermark or something that appears in LARGE font in the middle of the screen showing the macro running. It will serve both a cosmetic and functional purpose. Functionally it will let people not familiar with macros to know when they are done, I know the status bar works, but could it be possible? A tough Challenge.