Needing help with a complicated Ifs/and/search please

Needs Help1

New Member
Joined
Apr 4, 2022
Messages
3
I have a field of data which needs to be compared in multiple places, I keep almost getting there but am missing the final bit to make it work, would appreciate any assistance with this!

One table of data has an individually coded number which needs to be searched for in the other table of information.
Once the correct line has been found the 3 other points of data need to be matched. Just need a simple Yes, or No as to whether it matches.

Example.

3, G, H, I
2, A, B, C

1, A, B, C
2, D, E, F
3, G, H, I
4, J, K, L

Will find and confirm that the line in question does match to one of the other lines but the second doesn't.
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Hi,

Is each row's data in the same cell, or in 4 separate cells ?
 
Upvote 0
I think just COUNTIFS would do:

Book3.xlsx
ABCDE
13GHIYes
22ABCNo
3
4
5
61ABC
72DEF
83GHI
94JKL
Sheet1065
Cell Formulas
RangeFormula
E1:E2E1=IF(COUNTIFS(A$6:A$9,A1,B$6:B$9,B1,C$6:C$9,C1,D$6:D$9,D1),"Yes","No")
 
Upvote 0
Solution
You're welcome, thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,072
Latest member
DW Draft

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