Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这可能是那些简单到我看不到的那些之一。我有一个名为 Market 的字符串变量。该变量是用户选择的,并且与我的数据集中的许多表之一完全相同。基本上我让用户在组合框中选择他们想要的表,然后我想使用该变量来访问表。因此,如果用户选择“Market1”,那么我想打开名为 Market1 的表。
我在这里简化,但需要知道如何打开:
For ds.<variable here>.rows.count - 1 'perform steps Next
如何正确注入变量?提前谢谢!
Dataset 具有 Tables 属性,该属性接受表名作为参数。因此,在您的情况下,如果字符串变量Market包含表名,您可以通过引用来访问该表ds.Tables(Market)
Market
ds.Tables(Market)