需要用变量暂存一下数据的时候,就要dim这样定义一下。你直接写也是可以的。
如
Dim t As Table = Tables("表A")
msgbox(t.current("第一列"))
等价于
msgbox(Tables("表A").current("第一列"))