Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need a procedure that will unhide all the hidden rows on a worksheet.
I cannot figure out how to do this. The main stumbling block is detecting whether any rows on the worksheet and which ones they are. Assume the hidden rows are continguous. Any ideas? Thank you. John Wirt |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you want to unhide ALL rows on a sheet then you do not need to know which,
if any, are hidden. Simply Rows("1:" & Rows.Count).EntireRow.Hidden = False Hope this helps Rowan "John Wirt" wrote: I need a procedure that will unhide all the hidden rows on a worksheet. I cannot figure out how to do this. The main stumbling block is detecting whether any rows on the worksheet and which ones they are. Assume the hidden rows are continguous. Any ideas? Thank you. John Wirt |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi John,
Alteratively, try: Cells.Rows.Hidden = False --- Regards, Norman "John Wirt" wrote in message ... I need a procedure that will unhide all the hidden rows on a worksheet. I cannot figure out how to do this. The main stumbling block is detecting whether any rows on the worksheet and which ones they are. Assume the hidden rows are continguous. Any ideas? Thank you. John Wirt |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Problem with hidden rows automatically unhiding | Excel Discussion (Misc queries) | |||
hidden rows but not from hiding/unhiding? | Excel Discussion (Misc queries) | |||
How do I prevent hidden rows from unhiding when resizing row ht? | Excel Discussion (Misc queries) | |||
Unhiding All hidden Worksheets with a Macro/VBA Code | Excel Discussion (Misc queries) | |||
hidden rows keep unhiding themselves! | Excel Discussion (Misc queries) |