Conditional formating maybe? (Stuck)

CyannideHigh

New Member
Joined
Dec 14, 2018
Messages
15
Hey there guys (And Girls),

I have a problem i just can't solve, ok here it is i have 2 sheets within my document that will have a VERY similar list in them. i would really like to see if i am putting in duplicates in either list without having to jump back and forth.

I was personally thinking conditional formatting but i don't know how to get both columns selected without excel "arguing" with me about it XD

Any ideas?

Thanks in advance :)
 
Hello again,

In your Sheet Evo ... in cell L2 ...could you test the following formula :

Code:
=IFERROR(AND(ISNUMBER(MATCH(H2,Master,0)),INDIRECT("Gear!B"&MATCH(H2,Gear!C:C,0))="Y"),FALSE)

And could you confirm the results produced TRUE - FALSE are all correct ...
 
Upvote 0

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
=IFERROR(AND(ISNUMBER(MATCH(H2,Master,0)),INDIRECT("Gear!B"&MATCH(H2,Gear!C:C,0))="Y"),FALSE)

This produced a "FALSE"
 
Last edited:
Upvote 0
Select H2 to H200 & use this
=AND(INDEX(Gear!$B$2:$B$200,MATCH($H2,Gear!$C$2:$C$200,0))="Y",ISNUMBER(MATCH($H2,Gear!$C$2:$C$200,0)))

When using CF it's best to avoid using whole column references.
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,429
Messages
6,124,840
Members
449,193
Latest member
MikeVol

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