I can't download your add-in due to work IT restrictions, sorry.
I'm trying to hide rows too and I know I'm doing something wrong. If the values in $i3, $J3, $O3, or $Q3 =0 then hide row, if not then don't hide row. then go to the next row in file.
I have this:
Sub HideRows()
StartRow = 15
EndRow = 200
For i = StartRow To EndRow
If Cells(i, "I3:J3, O3:Q3").Value = "0.0" Then
Cells(i, "I3:J3, O3:Q3").EntireRow.Hidden = True
Else
Cells(i, "I3:J3, O3:Q3").EntireRow.Hidden = False
End If
Next i
End Sub
I appreciate your help
thanks
I'm trying to hide rows too and I know I'm doing something wrong. If the values in $i3, $J3, $O3, or $Q3 =0 then hide row, if not then don't hide row. then go to the next row in file.
I have this:
Sub HideRows()
StartRow = 15
EndRow = 200
For i = StartRow To EndRow
If Cells(i, "I3:J3, O3:Q3").Value = "0.0" Then
Cells(i, "I3:J3, O3:Q3").EntireRow.Hidden = True
Else
Cells(i, "I3:J3, O3:Q3").EntireRow.Hidden = False
End If
Next i
End Sub
I appreciate your help
thanks