以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  如何用Excel VBA获取Excel表区域(例如:B2:B3)的数据?  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=189749)

--  作者:诚学思行
--  发布时间:2023/12/22 18:01:00
--  如何用Excel VBA获取Excel表区域(例如:B2:B3)的数据?
如何用Excel VBA获取Excel表区域(例如:B2:B3)的数据?
--  作者:有点蓝
--  发布时间:2023/12/23 9:47:00
--  
参考:http://www.foxtable.com/webhelp/topics/2121.htm

Dim Jg As MSExcel.Range = Ws.Range("B2:B3")
msgbox(Jg.Cells(1).Value)
msgbox(Jg.Cells(2).Value)