Match Challenge

frankee_gee

Board Regular
Joined
Mar 3, 2008
Messages
144
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hello Mr. Excel,

Please help. I receive a report with about 50 rows of data daily. Two of the headings have to be identical. I was hoping I could use a formula to do this for me.



A
B
C (Want results here)
Activity Date
Transaction Date
Match yes / no
1/1/2014
1/1/2014
y
1/2/2014
1/3/2014
n
1/6/2014
1/6/2014
y

<tbody>
</tbody>

It does not have to be a "Y" or "N" ...just something that indicates that there is a mismatch. like a "1" or "0"...


Thanks for your time.

Frank.
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Assuming you want to see if the entries in A have a match in B:
In C2 and copy down.
Code:
=IF(ISNA(MATCH(A2,$B2:$B100)),"No","Yes")
Adjust the B range to suit.
 
Upvote 0
V, V & J,

Beautiful!!! They all worked. Thanks for you help as usual. This will save tons to time.

Thanks again,:ROFLMAO:

Frank.
 
Upvote 0

Forum statistics

Threads
1,215,465
Messages
6,124,977
Members
449,200
Latest member
Jamil ahmed

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