我对 Excel 电子表格有意见。
我有一个按钮来控制评论是显示还是隐藏。当用户单击按钮时,应显示评论。当用户再次单击它时,评论应该会消失。
下面是我尝试使用的代码——它们都独立工作,但是当我输入 If Then Else 语句时,我得到了错误:
Sub showcomments()
If Comments <> "Visible" Then Application.DisplayCommentIndicator = xlCommentAndIndicator
Else: Application.DisplayCommentIndicator = xlCommentIndicatorOnly
End If
End Sub
我试过了else if comments = visible
。
我通常会收到错误“else without if”。