Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Have tried below implementing "Displaying Progress% in Status Bar" as
recommended in one of J Walkenbach's books ("How to" was a bit brief...) any way as Macro RunABigOne runs the % remains unchanged at 100% << probably what I've told it to do. Can someone assist me in correcting to what is intended? TIA, Sub RunABigOne() UpdateStatusBar 0 For x = 1 To 10000 Cells(x, "C").Value = "This is a test" Next x StopPC End Sub Sub UpdateStatusBar(PctDone) Application.StatusBar = _ "Percent Completed: " & Format(PctDone, "100%") End Sub Sub StopPC() Application.StatusBar = False End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
split post code (zip code) out of cell that includes full address | Excel Discussion (Misc queries) | |||
Code to conditional format all black after date specified in code? | Excel Discussion (Misc queries) | |||
Drop Down/List w/Code and Definition, only code entered when selec | Excel Worksheet Functions | |||
option buttons run Click code when value is changed via VBA code | Excel Programming | |||
VBA code delete code but ask for password and unlock VBA protection | Excel Programming |