How do I flag duplicate data in 2 separate Excel files

pem089

New Member
Joined
Aug 3, 2011
Messages
4
I have a report that I have to run every week and one of the main list name is called "order number" and lists various order numbers in that column. I need to somehow be able to determine if that order number was on the previous report or subsequent reports. What is the best way that I can flag the reports for this information.

Thanks much!!

Pem089:)
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
I have a report that I have to run every week and one of the main list name is called "order number" and lists various order numbers in that column. I need to somehow be able to determine if that order number was on the previous report or subsequent reports. What is the best way that I can flag the reports for this information.

Thanks much!!

Pem089:)

I would suggest you take a look at the VLOOKUP Function and see if you can apply that.
 
Upvote 0
try this
Excel Workbook
AB
1Order Number
2Order 1Duplicate
3Order 2Duplicate
4Order 3Duplicate
5Order 4Duplicate
6Order 5Duplicate
7Order 6Duplicate
8Order 7Duplicate
9Order 8Duplicate
10Order 9Duplicate
11Order 10New
12Order 11New
13Order 12New
14Order 13New
15Order 14New
Sheet1
Excel 2007
Cell Formulas
RangeFormula
B2=IF(ISNUMBER(MATCH(A2,Sheet2!$A$2:$A$10,0)),"Duplicate","New")


then other sheet
Excel Workbook
A
1Order Number
2Order 1
3Order 2
4Order 3
5Order 4
6Order 5
7Order 6
8Order 7
9Order 8
10Order 9
Sheet2
Excel 2007
 
Upvote 0

Forum statistics

Threads
1,224,537
Messages
6,179,408
Members
452,912
Latest member
alicemil

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top