如何使用宏将所选数据从一个工作表复制到 Excel 上的另一个工作表?
我需要在 Excel 上创建一个宏来跟踪不断变化的合同。已经有一个现有的宏可以更新合同数据,因此我需要创建另一个宏...
有两个工作表。第一个工作表上有一堆数据,每行代表一个合同。有多个类别(合同编号、日期、价格等)。
我需要编写一个宏,仅查找符合特定条件的某些合同(例如,特定日期或特定价格的联系人),将它们复制并粘贴到第二个工作表中。
到目前为止我所做的: 我已经找到了使用 IF 和 OR 函数来完成此操作的一些复杂方法。因此,如果情况为真,则使用 OR 我指定条件和 IF 来基本上找到相应的数据。
如果结果为假,则输入 0。问题是我有大量的零行——不符合标准的行/合同。当我尝试使用查找命令 (CTRL+F) 查找、突出显示并正确删除(行向上移动)所有零时,宏不会记录它,我不确定如何在代码中编写它。
任何见解都会有所帮助!
I need to create a Macro on Excel to keep track of changing contracts. There's already an existing macro that updates the contract data so I need to create another macro...
There are two worksheets. On the first worksheet is a bunch of data with each row representing one contract. There are several categories (Contract #, Date, Price, etc.).
I need to write a Macro that finds only certain contracts fitting specific criteria (like, contacts at a specific date or a certain price), copies and pastes them into the second worksheet.
What I've done so far:
I've figured out a bit of a convoluted way of doing it using IF and OR functions. So using OR I specify the criteria and IF to basically find the corresponding data if things are TRUE.
When things are false, a 0 is entered. The problem is I have tons of rows of zeroes---rows/contracts that didn't fit the criteria. When I try to use the find command (CTRL+F) to find, highlight, and properly delete (with rows shifted up) all the zeroes, Macro doesn't record it and I'm not sure how to write it in the code.
Any insight would help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将您的公式更改为:
Just change your formula to: