compare worksheets data

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have two work sheets, version 1 and version 2. I am trying to identify
what changed. The data is as follows:

Invoice # Item # Amount
11111 aaaaa 1.00
11111 bbbbb 2.00
22222 aaaaa .50
22222 bbbbb .75
33333 bbbbb 1.00
44444 ccccc 1.00

Can anyone help???
 
find said:
I have two work sheets, version 1 and version 2. I am trying t
identify
what changed. The data is as follows:

Invoice # Item # Amount
11111 aaaaa 1.00
11111 bbbbb 2.00
22222 aaaaa .50
22222 bbbbb .75
33333 bbbbb 1.00
44444 ccccc 1.00

Can anyone help???

Add a third worksheet and use the following formula

=IF(Sheet1!A1=Sheet2!A1,"No Change","Changed")

you need to change sheet1/sheet2 in the formula to matcch the names o
your worksheets

If invoice # is cell A1, then start from there, then drag the formul
down and across as far as required

All the cells with Changed in them are the ones you are looking fo
 
I have two work sheets, version 1 and version 2. I am trying to identify
what changed. The data is as follows:

Invoice # Item # Amount
11111 aaaaa 1.00
11111 bbbbb 2.00
22222 aaaaa .50
22222 bbbbb .75
33333 bbbbb 1.00
44444 ccccc 1.00

Can anyone help???

There's an add-in called Compare.xls that you may find useful. See:

http://www.cpearson.com/excel/whatsnew.htm
 
That worked great Paul...Thanks!!!

Paul Sheppard said:
Add a third worksheet and use the following formula

=IF(Sheet1!A1=Sheet2!A1,"No Change","Changed")

you need to change sheet1/sheet2 in the formula to matcch the names of
your worksheets

If invoice # is cell A1, then start from there, then drag the formula
down and across as far as required

All the cells with Changed in them are the ones you are looking for
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top