How do I match words in Column A and C in Excel 2003

G

Guest

I want to do a comparison on my excel sheet. I have 4 columns and I need to
compare the single words in column A to match the single words in column C
and the single word in Column D on the respective row. Is there a formula to
do this?

eg it starts like

1 Dog Tail Bird Tweetypie
2 Cat Tail Dog Rover
3 Bird Feather Cat Tom


but ends up looking like

1 Dog Tail Dog Rover
2 Cat Tail Cat Tom
3 Bird Feather Bird Tweetypie

I have looked at vlookups to be honest dont fully understand what is being
said, so if anyone can help explain it even plainer or another way to do it
that would be superb

thanks
 
F

Frank Kabel

Hi
have you tried to sort both range separately by column a and C
respectively?
 
J

Jay

I want to do a comparison on my excel sheet. I have 4 columns and I
need to compare the single words in column A to match the single words
in column C and the single word in Column D on the respective row. Is
there a formula to do this?

eg it starts like

1 Dog Tail Bird Tweetypie
2 Cat Tail Dog Rover
3 Bird Feather Cat Tom


but ends up looking like

1 Dog Tail Dog Rover
2 Cat Tail Cat Tom
3 Bird Feather Bird Tweetypie

Maybe the following would help.

In E1 put
=IF(COUNTIF(C:C,A1)>0, A1,NA())

In F1 put
=VLOOKUP(A1,C:D,2,FALSE)

Copy the two cells downward for as many rows as you need.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top