I am trying to generate a cross reference highlight format.
I am using this Conditional Format Formula to check and highlight values list in B2:K100 not found in Column M.
B2:K100 Has values something like this
10001 10005
10002 10006
Column M has data inserted from another program and looks like this
9JFK20002 1" 6C LMNOP RIP 10002 644.000
I am using this Conditional Format Formula to check and highlight values list in B2:K100 not found in Column M.
=ISNA(MATCH("*"&B2&"*",$M$1:$M$500,0))
This works wonderfully. What I need now is a cross reference in Column M. I need to look in column M specifically for the 10002 value in B2:K100. If no match is found, then highlight.
I would assume all I need to do is switch the "*" wildcard function up a bit, but I am not sure exactly how.
I am using this Conditional Format Formula to check and highlight values list in B2:K100 not found in Column M.
B2:K100 Has values something like this
10001 10005
10002 10006
Column M has data inserted from another program and looks like this
9JFK20002 1" 6C LMNOP RIP 10002 644.000
I am using this Conditional Format Formula to check and highlight values list in B2:K100 not found in Column M.
=ISNA(MATCH("*"&B2&"*",$M$1:$M$500,0))
This works wonderfully. What I need now is a cross reference in Column M. I need to look in column M specifically for the 10002 value in B2:K100. If no match is found, then highlight.
I would assume all I need to do is switch the "*" wildcard function up a bit, but I am not sure exactly how.