![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Board Regular
Join Date: Mar 2002
Posts: 60
|
I have a "Word Art" image I would like to show in a spreadsheet while a macro is running. I have:
ActiveSheet("logo").Visible=True at the beginning of the macro, and: ActiveSheet("logo").Visible=False at the end of the macro. However the macro runs so fast you never see the logo. What simple code can I put in to slow or suspend execution for a couple of seconds so the macro has time to appear and the user to comprehend it? Mechanic |
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Apr 2002
Location: Vancouver BC , Canada
Posts: 6,259
|
Just a thought but maybe you could put the logo.false in a sheet action section, such as the Sheet.change procedure.
i.e. Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range ActiveSheet("logo").Visible=False end sub
__________________
<MARQUEE>...........Never be afraid to try something new. Remember, amateurs built the ark, professionals built the Titanic...............The easiest thing to find is fault, don't be easy !.. --Anonymous--...</marquee> |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|