Display a progress status of your macro on the bottom left corner of Excel
Sub My_macro_status() 'To display a status to the user on the bottom left corner of Excel application
Application.StatusBar = "Macro in process: 0%"
'Code
Application.StatusBar = "Macro in process: 50%"
'Code
Application.StatusBar = "Macro in process: 100%"
'Code
Application.StatusBar = False
End Sub
Code syntax: charles.racaud.free.fr
No comments:
Post a Comment