Hi, below is code to hide rows based on entries in cells in column 4. Is it possible to modify it so instead of column 4, it will use any selected column? Would I just select any cell in the column I want, or a specific cell to represent the column? Thanks for the help.
VBA Code:
Sub HIDE_ROWS()
Application.ScreenUpdating = False
BeginRow = 6
EndRow = 160
ChkCol = 4
For RowCnt = BeginRow To EndRow
If Cells(RowCnt, ChkCol).Value = 0 Or Cells(RowCnt, ChkCol).Value = "" Then
Cells(RowCnt, ChkCol).EntireRow.Hidden = True
End If
Next RowCnt
Range("c:c").EntireColumn.Hidden = True
Application.ScreenUpdating = True
End Sub