simple excel formula required

Permabanned
Joined
18 Oct 2002
Posts
1,297
Location
Derbyshire
I need to run a macro that will look for the value in U3 and then find that value in column a and change the colour of the text.

If it helps, the value I will be searching for will always be present and will only appear once.

Thanks
James
 
Putting this formula in beside you values in column a will tell you if the value beside it matches your value in U3

=IF(VLOOKUP($A$1,$U$3,1,FALSE)=$U$3,"Match","")

Alternativly as said above just use conditional formatting to change the colour of the values in A:A if they match U3
 
Back
Top Bottom