Compare data between 2 spreadsheets

Chezzy

New Member
Joined
Aug 11, 2011
Messages
11
Hi,

Sorry if this has already been mentioned but i couldn't find an answer to my question.

I have 2 spreadsheets.

First spreadsheet with 4 columns:

(A)Worker Number / (B) Worker Name / (C) Job Title / (D) Reports to7

Second spreadsheet with same info but

(E)Worker Number / (F) Worker Name
Spreadsheet 1 data is current data and i need to compare the A & B to the E & F column in spreadsheet 2 which is old data but basically the same information.

I need it to return me a message, on the 2nd spreadsheet in the "G" Column basically telling me if E & F matches A & B in Spreadsheet 1. Stating either "Correct" or "Incorrect".

Thanks for any help in advance and i hope my explanation hasn't confused anyone.

If possible, if someone could write me a formula to input in column G in spreadsheet No2 that would be great.

I'm not great with excel but i know this can be done and just need any help i can get to complete this task quicker.


Thanks! :confused:
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Hi Chezzy,
From cell e2 sheet1 copy down
=A2&b2

In sheet2 E2 copy down:

=IF(ISNUMBER(MATCH(E2&F2,Sheet1!$E$2:$E$500,0)),"Correct","incorect")
 
Upvote 0
Simply paste the formular below on G2 of sheet2:

=IFERROR(IF($E2&$F2=Sheet1!$A2&Sheet1!$B2,"correct","incorrect"),"")

Regards

'Rotimi
 
Upvote 0
Simply paste the formular below on G2 of sheet2:

=IFERROR(IF($E2&$F2=Sheet1!$A2&Sheet1!$B2,"correct","incorrect"),"")

Regards

'Rotimi

Rotimi,
Your formula will only compare one row at a time.
Not sure if this is what chezzy is lookig for.
Besides IFERROR will only work in Excel 07 and 10
 
Upvote 0

Forum statistics

Threads
1,224,566
Messages
6,179,550
Members
452,927
Latest member
rows and columns

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