Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何返回在 VBA 中传递给它的(变体)变量的维数
有什么方法可以检查 VBA 数组是 2D 还是 1D?我不能使用isnumericonlbound(x,2)因为我得到一个下标超出范围的异常。
isnumeric
lbound(x,2)
编辑我也不能使用iserror(lbound(x,2))
iserror(lbound(x,2))