Hiding rows

C

camlad

I need to hide empty rows

Col 1 has the date, Col 2 may/may not be empty

This works:



Sub Testing()

Count = 1

While Count < 20

If Cells(Count, 2) = "" Then

Rows(Count).EntireRow.Hidden = True

Count = Count + 1

End If

Wend

End Sub



I now need to make sure every cell in Cols 2-10 is empty before hiding the
row - of course this does not work:



If Range(Cells(Count, 2), Cells(Count, 10)) = "" Then



How do I test Cols 2-10 without a 'if' for each cell?



Thanks



Camlad
 
N

Nigel

You could use the following test.....

If Application.WorksheetFunction.CountA(Range(Cells(Count, 2), Cells(Count,
10))) > 0 Then

The only thing to note that any cell with one or more spaces would look
empty but isn't so the test would fail, if you were testing for numerical
values only, use Count instead of CountA. You might like to rename your
control variable "Count" as it get a bit confusing!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top