Hi,
I was wondering if there was a way to display the name of the sheet a macro is working on in the status bar once the macro has been completed.
I have 4 worksheets the macro runs through and would like to update the user as each worksheet is done.
I tried using:
Many thanks in advance for your help!!!
I was wondering if there was a way to display the name of the sheet a macro is working on in the status bar once the macro has been completed.
I have 4 worksheets the macro runs through and would like to update the user as each worksheet is done.
I tried using:
Code:
Dim wsname As Worksheet
Dim wsn As String
wsn = wsname.Name
Application.StatusBar = "& wsn & worksheet complete, please wait for others to be completed"
Many thanks in advance for your help!!!