Checking dates against Store ID

huc

New Member
Joined
Apr 3, 2009
Messages
24
Hi all,

I wonder if someone can help with a formula please?

I have two seperate workbooks.

In sheet 1 of workbook 1, Column A is a store ID, and column B is the install date.

In sheet 1 of workbook 2, I have exactly the same set up, store ID in column A and install date in column B.

I need to be able to check in column C of workbook 2 that the installation dates match for the same store ID's.

I kind of want it to do a compare store ID in workbook 1 sheet 1 to store ID in workbook 2 sheet 1, and where they match compare the date in the adjacent columns and give me a "match" "no match" response.

Does that make any kind of sense to anyone LOL?

Thanks,
Chris
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Hi

Sounds plausible to do :)

Try something like;

Code:
=IF(VLOOKUP(A2,[WorkBook1]Sheet1!A:B,2,FALSE)=B2,"Match","No Match")

That should work providing you amend the names / ranges to suit :)
 
Upvote 0

Forum statistics

Threads
1,224,534
Messages
6,179,391
Members
452,909
Latest member
VickiS

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