Hi All
I have this bit of code Sub HideOut()
Sheets("RDC_OB").Select
BeginRow = 208
EndRow = 244
ChkCol = 10
For RowCnt = BeginRow To EndRow
If Cells(RowCnt, ChkCol).Value = 0 Then
Cells(RowCnt, ChkCol).EntireRow.Hidden = True
Else
Cells(RowCnt, ChkCol).EntireRow.Hidden = False
End If
Next RowCnt
End With
End Sub
How do I make this run from Sheet "Dash" wile staying on Sheet "Dash"
Sure this is simple but I cannot make it work !
I have this bit of code Sub HideOut()
Sheets("RDC_OB").Select
BeginRow = 208
EndRow = 244
ChkCol = 10
For RowCnt = BeginRow To EndRow
If Cells(RowCnt, ChkCol).Value = 0 Then
Cells(RowCnt, ChkCol).EntireRow.Hidden = True
Else
Cells(RowCnt, ChkCol).EntireRow.Hidden = False
End If
Next RowCnt
End With
End Sub
How do I make this run from Sheet "Dash" wile staying on Sheet "Dash"
Sure this is simple but I cannot make it work !