I have a "master"row that contains a fixed number of values 10. I also have about 60 rows of the same length that i need to search if there are matching values from this "master" row. I would like to highlight the matching values.
Is there a quick way of doing this using functions or VBA. i have thought of using a nested for-loop...
for (int i = 1 to 10 )
for (int j = 1 to 36)
for (int k= 1 to 10)
if master[i] = Rest[j][k]
Rest[j][k].background = yellow
end if
end if
end if
Im familiar with programming but having difficulty transferring this to Excel VBA
Any help and or Advice greatly appreciated!
Bookmarks