您好我想问是否有任何方法可以使用切换VBA进行隐藏/取消隐藏?但是我只需要空白行,具体取决于一个单元格。
For Each Cell In ARE
If Cell.Value = "" Then Cell.Offset(0, 0).Rows
.Hidden = Not .Hidden
Next
答案 0 :(得分:0)
您必须引用EntireRow
属性。见下文
For Each cell In are
With cell
If .Value = "" Then
.EntireRow.Hidden = Not .EntireRow.Hidden
End If
End With
Next