LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,600
Default Progress indicator help wanted

Seems way too long. There are probably ways to speed things up depending on
what you are doing.

If I follow, you want to hide any rows between 5:7818 if the entry in column
A is zero (or blank). If that's right try something like this

Sub HideZeroRows()
Dim rng As Range

On Error GoTo errExit
Application.ScreenUpdating = False
Columns("A:A").Insert

Set rng = Range("A5:A7818") ' <<< Change

rng.EntireRow.Hidden = False
rng.FormulaR1C1 = "=IF(RC[1]=0,1,"""")" ' =IF(B5=0,1,"")

On Error Resume Next
' get all formula cells in the temporary range that return a number
Set rng = rng.SpecialCells(xlCellTypeFormulas, 1)
On Error GoTo errExit

If Not rng Is Nothing Then
rng.EntireRow.Hidden = True
End If

Columns("A:A").Delete

errExit:
Application.ScreenUpdating = True
End Sub

Regards,
Peter T


"Cerberus" wrote in message
...
I have a macro that takes about 30 to 40 seconds to run and I would like a
progress indicator to run while while the macro runs. The macro hides
anything that has a zero value in column A, starting at row 5 and
finishing
on row 7818. I have a User Form that has a frame and lable that I was
going
to use to indicate the progress. The issue, for me atleast, is creating
the
formula to make the progress bar work.

Thanks for any ideas on how to write the fromula in advance.



 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Macro Progress Indicator Telecorder Excel Programming 0 February 2nd 09 05:52 PM
Progress Indicator Rob Hargreaves[_2_] Excel Programming 16 August 8th 05 12:50 AM
msgbox as a progress indicator... John Keith[_2_] Excel Programming 2 June 30th 05 06:36 PM
Progress Indicator in form Paul_Russell[_2_] Excel Programming 3 February 4th 04 10:38 PM
PROGRESS INDICATOR jason Excel Programming 6 October 3rd 03 01:58 AM


All times are GMT +1. The time now is 05:55 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"