I have an Excel file having 2 different sheets.
Sheet 1 includes raw data.
Name Address Phone
Alex 1698 ABC street, L23 N22, ON +1-547-222-4444
Mark 2212 XYZ street*, M23 N22, ON +1-547-333-5555
Fred 1234 QWE street, L55 N62, ON +1-547-666-7777
...
In sheet 2, I have a column indicating the allowed characters row by row:
AllowedCharacters
0
1
2
...
9
A
B
...
Z
a
b
...
z
-
/
\
&
,
+
What I need is to check if there is any row in Sheet1 including a non-allowed character (which is not in the list on Sheet2), and if so, I should highlight the cell by yellow.
So in the example data above, the Mark's address should be highlighted because it includes the character: *, which is not allowed.
What is the best way to do it?