Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Folks,
I can find my last row of data with... LastRowOfData = .Cells(.Rows.Count, "F").End(xlUp).Row For X = 1 To LastRowOfData But how can I then select rows 1 through LastRowOfData then unhide all at once?? -Not that they are all hidden in the firstplace, but I think it would run faster then looping through each row and unhiding it if it is hidden. TIA, Steve |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can unhide all hidden rows in a worksheet with:
Rows.Hidden = False "Stephen" wrote: Hi Folks, I can find my last row of data with... LastRowOfData = .Cells(.Rows.Count, "F").End(xlUp).Row For X = 1 To LastRowOfData But how can I then select rows 1 through LastRowOfData then unhide all at once?? -Not that they are all hidden in the firstplace, but I think it would run faster then looping through each row and unhiding it if it is hidden. TIA, Steve |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
ok now I just feel dumb... that was too simple.
thanks, that's going to come in very handy! "StumpedAgain" wrote: You can unhide all hidden rows in a worksheet with: Rows.Hidden = False "Stephen" wrote: Hi Folks, I can find my last row of data with... LastRowOfData = .Cells(.Rows.Count, "F").End(xlUp).Row For X = 1 To LastRowOfData But how can I then select rows 1 through LastRowOfData then unhide all at once?? -Not that they are all hidden in the firstplace, but I think it would run faster then looping through each row and unhiding it if it is hidden. TIA, Steve |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
No reason to select:
.Range("1:" & .Cells(.Rows.Count, 6).Row).EntireRow.Hidden = False In article , Stephen wrote: Hi Folks, I can find my last row of data with... LastRowOfData = .Cells(.Rows.Count, "F").End(xlUp).Row For X = 1 To LastRowOfData But how can I then select rows 1 through LastRowOfData then unhide all at once?? -Not that they are all hidden in the firstplace, but I think it would run faster then looping through each row and unhiding it if it is hidden. TIA, Steve |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
unhide row does not unhide the hidden rows | Excel Worksheet Functions | |||
Bulk Upload | Excel Programming | |||
how do i unhide a worksheet in excel 2003? unhide tab don't work | Excel Discussion (Misc queries) | |||
Bulk row deletion | Excel Programming | |||
Bulk Email | Excel Programming |