A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
So you have a simple link to another worksheet that returns zero of the cell is empty and you want to hide all rows that have a zero, is that correct? Yes, then try this code.
Private Sub Worksheet_Calculate()
Dim c As Range
For Each c In Range("D3:D100")
If c.Value = 0 Then
c.EntireRow.Hidden = True
Else
c.EntireRow.Hidden = False
End If
Next
End Sub