Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I am trying to hide empty rows in a named range (A5:BU1111) where all "empty" rows however do have a formula in several columns (where the value is ""). The only way I have managed is to create a dummy column (which I have named "ROW_SHRINK_AREA", which creates some values which indicate that the row in question is not empty. Then I use the macro: Sub MakeEmptyRowsGoAway() Application.Goto Reference:="ROW_SHRINK_COLUMN" For Each R In Application.Intersect(ActiveSheet.UsedRange, _ ActiveSheet.Range("ROW_SHRINK_COLUMN")).Cells varValue = R.Value If IsNumeric(varValue) Then If varValue = 0 Then R.EntireRow.Hidden = True End If End If Next R End Sub Would someone please advise me a faster method? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Help on Macro to hide empty rows | Excel Discussion (Misc queries) | |||
Is there a way to automatically hide empty rows? | Excel Worksheet Functions | |||
Macro to hide rows with a certain cell empty then set print area and print | Excel Programming | |||
URGENT!! Use macro button to hide empty columns and rows...HELP!!!! | Excel Programming | |||
Macro to hide rows with empty cells | Excel Worksheet Functions |