我不知道如何在 Excel 中编写宏,但我想我已经在你的网站上找到了一个答案,让我接近我需要的东西。这是我的情况:
If cell K23 = cell T20 then do nothing.
If cell K23 = cell (T21:T23) then hide rows 25:65
这是我到目前为止的宏:
Sub HIDE()
If Range(K23) = Range(T20) Then nil = True
Else
If Range(K23) = Range("T21:T23") Then Rows("25:65").EntireRow.Hidden = True
End If: End If:
End Sub
我收到一条错误消息“Else without If”
请告诉我我做错了什么。
谢谢。