gpt4 book ai didi

vba - 根据变量的类型做一些事情

转载 作者:行者123 更新时间:2023-12-02 15:35:36 24 4
gpt4 key购买 nike

我在 VBA 中有一个函数,通常返回一个数组。如果没有任何内容可返回,则返回一个空变量 (b = empty)。我有一些代码可以循环遍历数组,但如果变量不是数组,则会出现错误。我怎样才能做出一个不会导致其自身错误的 if 语句。我已经尝试过了

if not b = empty then
'do the loop
end if

但是当 b 是数组时这会产生错误同样,我收到 b = nullb = Nothingb(1,1) = "" 等错误。

检查此问题的最佳方法是什么?

最佳答案

要测试变量是否为空,请使用 IsEmpty功能。

If IsEmpty(b) Then
Debug.Print "b is Empty"
End If

要测试变量是否为数组,请使用 VarType功能。

If VarType(b) And vbArray Then
Debug.Print "b is an array"
End If

关于vba - 根据变量的类型做一些事情,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13027864/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com