Thread: Comparing
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Striker3070 Striker3070 is offline
external usenet poster
 
Posts: 16
Default Comparing

this is great, but I prefer to do it in code so I can send this out and
nobody can change the formulas and mess it up.


"Gary Brown" <junk_at_kinneson_dot_com wrote in message
...
In column C put...
=IF(ISNA(VLOOKUP($A1,$B:$B,1,FALSE)),"Not in B","In B")
In column D put...
=IF(ISNA(VLOOKUP($B1,$A:$A,1,FALSE)),"Not in A","In A")
Sort on column C and/or Column D
--
Hope this helps.
If it does, please click the Yes button.
Thanks in advance for your feedback.
Gary Brown



"Striker3070" wrote:

I have two columns of numbers column A could be up to 3500 rows. Column
B
may be more or less than 3500 rows. What I'm trying to do is see if any
number in columns "B" appears anywhere in Column "A", and if so we can
just
highlight it in both columns. Actually I would want to be able to sort
by
highlighted. so maybe add someway to sort by matched or unmatched.


I hope this makes sense.