开发者

How do I use Macros to copy select data from one worksheet to another on Excel?

开发者 https://www.devze.com 2023-03-23 09:53 出处:网络
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...

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!


Just change your formula to:

=IF(OR(TermSheet!$E40=41220,TermSheet!$M40="bpxx"),TermSheet!E40,"")
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号