我正在尝试从VBA自定义函数所在的单元格中删除单元格内容。我有此代码,但这将返回错误:
Function test() As Variant
Application.Caller.ClearContents
End Function
答案 0 :(得分:0)
鉴于A1包含一个If公式,当满足特定条件时该公式不返回任何内容,在B1中输入以下内容将表明A1中的公式不返回任何内容...
=A1=""
用于后续的if公式...
=if(A1="","action if A1 is blank","action if it isn't")