我需要尽我所能自动执行此 Excel 文件

发布于 2024-12-17 09:42:16 字数 177 浏览 2 评论 0原文

我有一个我创建的 Excel 工作表。对于这张表,它会在其中两张表上提取数据。数据馈送有一个参数,我从另一个工作表馈送的下拉列表中填充该参数。我正在尝试使这个过程自动化。我希望能够让文件运行每个 ID(参数)、运行数据源、保存 Excel 工作表、运行下一个 ID 保存等等,直到它遍历列表。有人可以帮我解决这个问题吗?我是 VBA 新手。

I have an Excel sheet that I created. For this sheet it pulls in a data feed on two of the sheets. The data feed has a parameter which I populate from a Drop Down that is fed off of another sheet. I'm trying to automate this process. I want to be able to have the file run through each one of the ID's (the parameter), run the data feed, save the excel sheet, run the next ID save and so on until it goes through the list. Can someone please please help me with this? I'm new to VBA.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奈何桥上唱咆哮 2024-12-24 09:42:16

1) 您需要您的 ID 列表。我喜欢命名范围,所以我的命名为 ID_List

2) 循环遍历您的列表

dim r as range
for each r in [ID_List]
    'do yer stuff here
    'what needs to be done with the value **r.value**???

    'how do you want to save the file each time???
next

需要一些具体答案!

1) you need a list of your IDs. I like Named Ranges, so mine is named ID_List

2) Loop thru your list

dim r as range
for each r in [ID_List]
    'do yer stuff here
    'what needs to be done with the value **r.value**???

    'how do you want to save the file each time???
next

Need some specific answers!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文