以上情況我想自動隱藏空白的c3但c2不用
而c4中間要加一行空白的行
我該如何set 才可以不會清一色空白就隱藏?
我原本是
Dim c as range
Application.screenupdating = False
For Each c In Range(“c1:c80”)
If c.value = 0 or c.value = “ “ then
C. Entirerow.hidden = true
Else
C.entirerow.hidden = false
End if
Next c
Application.screenupdating = true