如何用vb提取excel表格中的数据

2024-12-02 19:04:41
推荐回答(1个)
回答1:

vb读取表格中的数据有下面几个方法
1,a = range("c5")
2,a=cells(3,5)
3,a=cells("c",5)
4,a=[c5]
还有其他数组赋值的方法
祝你成功