Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I devised a simple way to let them know the macro was working. Assuming the
macro is going to change some value or values in a cell on the spreadsheet, I would make that cell visible on the sheet (if it wasn't already), put the word PROCESSING in the cell, let the macro do its thing and then overwrite PROCESSING with the results of the macro. Sub Sheets("Analysis").Activate Application.ScreenUpdating = True Range("L42").Select Range("L42").Value = "Calculating Solution Codes" Application.ScreenUpdating = False 'Your macro runs here Range("L42").Value = Your macro results Application.ScreenUpdating = True Application.ScreenUpdating = False End Sub Mike F "kevin" wrote in message ... hi, I have a macro that takes a few seconds to run. is there a way to have a msg box appear when the button to run the macro is clicked with a message like "processing" for example and then disapear when the macro is finished running ie there are no buttons that the user can play with Many thanks kevin |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
If Formula for displaying a message | Excel Discussion (Misc queries) | |||
displaying running total of value entered in same cell? | Excel Worksheet Functions | |||
message box while macro is running | Excel Programming | |||
Displaying a Message and a Beep | Excel Programming | |||
Message Window to tell user "Macro Running" | Excel Programming |