请教高手如何用VBA编程读取其它excel文件中某个单元格中的内容
发布网友
发布时间:2022-05-14 16:00
我来回答
共2个回答
热心网友
时间:2023-10-23 15:41
sub test()
set wb=workbooks.open("D:\其它excel文档.xls")
tmp=wb.worksheets(1).[c2]
wb.close 0
msgbox tmp
end sub
热心网友
时间:2023-10-23 15:41
workbooks.open("d:\其它excel.xls")
x=cells(1,1)