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

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
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,214,971
Messages
6,122,520
Members
449,088
Latest member
RandomExceller01

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