Forum Discussion
SeaStar91
Feb 14, 2023Copper Contributor
How to Find and Highlight Exact Match in Column
I am tracking cars that park without permission in a private lot and need a way to identify and highlight the same license plate number (Column B data) for a quick comparison to determine if there i...
dscheikey
Feb 14, 2023Bronze Contributor
Here is my solution:
Conditional Formarting:
=AND(B1=XLOOKUP("*",B1:B1000,B1:B1000,FALSE,2,-1),ROW()<>XLOOKUP("*",B1:B1000,ROW(B1:B1000),FALSE,2,-1),B1<>"")
Only the duplicates of the last entry are marked.
See if that fits.