The easiest way is to use the status bar.
To ensure that the StatusBar is visible, use the line:
Application.DisplayStatusBar = True
To display your message, use the line:
Application.StatusBar = "Calculating...Please Wait"
At the end of your macro you will need to "reset" the status bar with the line:
Application.StatusBar = ""
There are more complicated methods of displaying progress bars (search the site for these), but in most cases, the above will do nicely.
JAF
Thanks very much, I'll give that a go.
If I wantedf something more complex, can you suggest where I might find it, I tried searching this site for "Progress bars", and nothing came up?
Almost there!
If you do a search for "PROGRESS" this will give you the pointers you need.
JAF Thanks very much, I'll give that a go.