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,

We will assume ' next to them ' means Column A ...

Test following formula .

Code:
=AND($A2="Y",ISNUMBER(MATCH($B2,stock_checker,0)))

HTH
 
Upvote 0

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
How about
=AND(ISNUMBER(MATCH(C2,master!$C$2:$C$100,0)),master!B2="Y")
 
Upvote 0
Ok so... both work, problem is that it doesn't cross-match each one to the name now it only "looks" at the first entry and sees the "Y" so everything is true XD
 
Upvote 0
With a master sheet like

Excel 2013/2016
BC
2YAL4 0AA
3YAL4 0BW
4YAL4 0XX
5YAL4 9XZ
6YAL4 9YL
7YAL5 2PR
8YAL5 5FG
9AL5 5UG
10YAL5 5UN
11AL6 0PB
12AL6 0PE
13YAL6 9TU
14AL6 9UG
15YAL6 9UJ
master


and on the sheet with the CF

Excel 2013/2016
C
2AL4 0AA
3AL4 0BW
4AL4 0XX
5AL4 9XZ
6AL4 9YL
7AL5 2PR
8AL5 5FG
9AL5 5UG
10AL5 5UN
11AL6 0PB
12AL6 0PE
13AL6 9TU
14AL6 9UG
15AL6 9UJ
Sheet1
 
Upvote 0
Something very similar, but it is bringing up false positives

if i could send it you i really would because it's driving me nuts now XD
 
Last edited:
Upvote 0
Ideally ... why don't you post a sample file to Dropbox or Google Drive ... :wink:
 
Upvote 0
Great ... !!!

So the Tab named ' Gear ' contains your Master List in Column C ...

By the way the formula to create the Name ' Master ' should be :

Code:
=OFFSET($C$1,1,0,COUNTA($C:$C)-1,1)

Now ... which Column in which tab requires your CF ...?
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,408
Messages
6,124,727
Members
449,185
Latest member
ekrause77

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