我需要尽我所能自动执行此 Excel 文件
我有一个我创建的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1) 您需要您的 ID 列表。我喜欢命名范围,所以我的命名为 ID_List
2) 循环遍历您的列表
需要一些具体答案!
1) you need a list of your IDs. I like Named Ranges, so mine is named ID_List
2) Loop thru your list
Need some specific answers!