Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello World,
I have a marco that clears some cell contents and does a few othe things. I also made a progress bar to show the progress of the marco The issue I'm having is that the macro works WAY to fast. My progres bar shows for a half of a second. And since I spent a half day makin the progress bar (newbie), I would like to enjoy watching it for a leat a few seconds. So, can anyone help me slow down this macro? looked up the OnTime method and I not sure if it would apply here. Here is my code: Sub ClearSheet() ' Inputing "0" in selected ranges Range("C13,M13,O15,Q13,Q15,C32,M32,O34,Q32," & _ "Q34,T33,C51,M51,O53,Q51,Q53,S61:T63").Formula R1C1 = "0" ' Requesting an update in percentage Call UpdateProgress(0.1) Call UpdateProgress(0.8) ' Unprotecting the sheet If ActiveSheet.ProtectContents = True Then ActiveSheet.Unprotect Password:="1234" End If ' Clearing selected ranges Range("B6:H10,L6:R10,C12,J12,J14,J17:J18,M12,T12," & _ "B21:H29,L21:R29,C31,J31,J33,J36:J37," & _ "M31,T31,B40:H48,L40:R48,C50,J50,J52," & _ "J55:J56,M50,T50,F60,Q2:S2,B6").ClearContents ' Requesting final update "90%" Call UpdateProgress(0.9) Range("B6").Select If ActiveSheet.ProtectContents = False Then ActiveSheet.Protect Password:="1234" End If PctDone = ClearContents Call UpdateProgress(PctDone) Unload UserForm1 End Sub Sub UpdateProgress(Pct) With UserForm1 .FrameProgress.Caption = Format(Pct, "0%") .LabelProgress.Width = 24 * (.FrameProgress.Width - 10) .Repaint End With End Sub Thanks, Rockee Freema -- Message posted from http://www.ExcelForum.com |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
slowing down | Excel Discussion (Misc queries) | |||
Macro slowing down after a while... | Excel Programming | |||
Slowing Macro | Excel Programming | |||
My macros are slowing down. | Excel Programming | |||
My macros are slowing down. | Excel Programming |