PhantomOak
New Member
- Joined
- Apr 20, 2011
- Messages
- 31
Right now I have this
I want it to check column, 3, 6, 7, 8, 13 and 17
How?
Code:
Sub HURows() '
BeginRow = 8
EndRow = 18688
ChkCol = 6
For RowCnt = BeginRow To EndRow
If Cells(RowCnt, ChkCol).Value = "" Then
Cells(RowCnt, ChkCol).EntireRow.Hidden = True
Else
Cells(RowCnt, ChkCol).EntireRow.Hidden = False
End If
Next RowCnt
End Sub
I want it to check column, 3, 6, 7, 8, 13 and 17
How?