问题描述
您好,
我正在Access 2010中编写一个模块,以在Excel文件中创建数据透视表。我经常使用"currentregion.rows.count"。在Excel vba中选择一个动态范围,当我尝试在Access模块中使用下面的时候,我不断收到一条错误消息:
我错过了一个括号(但我没有看到丢失的地方)。
我做错了什么?你可以在Access VBA中使用currentregion,如果可以的话,正确的语法是什么?
设置SourceRange = ActiveWorkbook.Worksheets(" C :\ Auto Reports \BD_EOD \Daily_Galaxy Template2.xlsx).Range(" A2:A"& cells.currentregion.rows.count")
Lorac1969
Hello,
I'm writing a module in Access 2010 to creat a pivot table in an Excel file. I've often used "currentregion.rows.count" in Excel vba to select a dynamic range, when I try to use the below in the Access module I keep getting an error message that I'm missing a parenthesis (but I don't see where one is missing).
What I'm I doing wrong? Can you use currentregion in Access VBA, if you can, what is the proper syntax?
Set SourceRange = ActiveWorkbook.Worksheets("C:\Auto Reports\BD_EOD\Daily_Galaxy Template2.xlsx).Range("A2:A" & cells.currentregion.rows.count")
Lorac1969
这篇关于在Access 2010中使用Currentregion属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!