I would like the following VBA code:
I have two columns full of values. I would like to take of of those columns and, starting from the first value, check if the value is anywhere in the other column. If the value is found, I would like to highlight the entire row. then restart with the second value in the first range and so on. The two columns are on different sheets.
For example here are the columns
Worksheet1 A1: 1234 A2: 2345 A3: 3456 etc... Worksheet2 A1: 1111 A2: 2345 A3: 3333 etc...
I would like the vba code to check if "1234" is in worksheet2 column A and highlight the entire row in yellow if it is. Then do the same for "2345".