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.
我有一个二维数组,(1 到 406、1 到 8)
当我尝试重新调整并保持价值时
ReDim Preserve arr(1 To UBound(arr()) + 1, 1 To 8)
它弹出错误下标超出范围,实际上我做错了什么?
您只能 ReDim 使用 VBA 保留多维数组中的最后一个维度,这是一个很棒的功能。
此答案中描述了此问题的一些解决方法。