formula to check if Values in columns A or B or C exists in D or E or F

aravindhan_31

Well-known Member
Joined
Apr 11, 2006
Messages
672
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi,

Hope everyone is doing well! I need a small help in formula

I have values in Col A or B or & C like
30 Days, 60 Days , 15 Days etc. ( values will be in any one column always)

I have another set of values in Col D or E or F like
30 Days, 60 Days , 15 Days etc. ( values will be in any one column always)
I need a formula in Colum G to tell me if any of the values that was present in A or B or C are there in either D or E or F

refer the sample image.

Thanks for the help

Regards
Arvind
 

Attachments

  • Validation.JPG
    Validation.JPG
    21.7 KB · Views: 7

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Try this in G2 and drag down:
Excel Formula:
=CONCAT(A2:C2)=CONCAT(D2:F2)
 
Upvote 0
Solution
I need a formula in Colum G to tell me if any of the values that was present in A or B or C are there in either D or E or F
Are either of these situations possible? If yes then what result would be expected?
22.04.21.xlsx
ABCDEFGH
260 Days30 Days30 Days60 DaysTRUEFALSE
360 Days30 Days5 Days60 DaysTRUEFALSE
Sheet4
Cell Formulas
RangeFormula
G2:G3G2=SUMPRODUCT(COUNTIF(A2:C2,D2:F2))>0
H2:H3H2=CONCAT(A2:C2)=CONCAT(D2:F2)
 
Upvote 0

Forum statistics

Threads
1,214,652
Messages
6,120,747
Members
448,989
Latest member
mariah3

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