VBA: Status Bar Updating
You can update the status bar in Excel while a macro is running to display a custom message.
1. Place this code in a macro whenever you want to update the user with a custom status bar message:
Application.StatusBar = "I'm working Now!!!"
2. And at the end of your macro place this code to return the status bar back to Excel:
Application.StatusBar = FALSE



Excellent entry. Simple and helpful. Thank you.
Thanks,
A little addition:
Application.DisplayStatusBar = True
‘to makes sure that the statusbar is visible