在特定条件下将数据从一个选项卡自动填充到另一个选项卡
我在 Excel 2010 电子表格中输入客户详细信息,即客户名称、日期、订单描述、订单金额等。有时,在某些条件下,需要将相同或部分相同信息添加到另一个选项卡,即 tab2,在同一个电子表格上。我想创建一个自动化系统来填充 tab2,但不知道如何做。
我考虑过在所有客户信息之前在 tab1 中创建另一列,当被问到“是否符合将客户信息添加到 tab2 的标准”时,该列有一个是/否的下拉列表选项。此列将充当警报,因此如果我选择“是”,那么我在 tab1 中输入的任何客户信息都会填充到 tab2 中。但我不知道该怎么做,有人可以帮忙吗?
I enter customer details onto an excel 2010 spreadsheet, ie customer name, date, description of order, amount of order etc. Sometimes, under certain criteria, the same or part of the same information needs to be added to another tab, ie tab2, on the same spreadsheet. I wanted to create an automated system to populate tab2, but cant figure out how.
I thought about creating another column in tab1, before all the customer information, which had a dropdown list option for yes/no when asked the question 'does it fit the criteria to add customer information to tab2'. This column would act as an alert, so that if i selected 'yes', then any customer information i enter in tab1 would then populate into tab2. But I dont know how to do this, can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果没有更详细的信息,我无法提供具体的代码建议。但一般来说,您可以使用 VBA
Worksheet_Change
事件来检测输入到工作表 1(选项卡 1)中的新数据并测试它是否满足某些条件。如果是,则执行一些代码以复制到工作表 2Without more detailed information I can't offer specific code advise. But in general you can use VBA
Worksheet_Change
event to detect new data entered into sheet 1 (tab 1) and test if it meets some criteria. If it does, execute some code to copy to sheet 2