C
camlad
I need to test if any row is hidden without opening them up.
Can anyone suggest an alternative to testing each row
Count = Cells(Rows.Count, 1).End(xlUp).Row
Count = 1
While Row(Count,1).hidden = false
Count = Count + 1
Wend
Which I have not tried that yet, it should work but seems messy
Camlad
Can anyone suggest an alternative to testing each row
Count = Cells(Rows.Count, 1).End(xlUp).Row
Count = 1
While Row(Count,1).hidden = false
Count = Count + 1
Wend
Which I have not tried that yet, it should work but seems messy
Camlad