I really need some help. I have a feeling that this is easy but I am too stupid to figure it out. I have a whole bunch of data that looks like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]1124[/TD]
[TD]fish[/TD]
[/TR]
[TR]
[TD]1124[/TD]
[TD]dog[/TD]
[/TR]
[TR]
[TD]1124[/TD]
[TD]bird[/TD]
[/TR]
[TR]
[TD]1568[/TD]
[TD]fish[/TD]
[/TR]
[TR]
[TD]1568[/TD]
[TD]bird[/TD]
[/TR]
[TR]
[TD]3265[/TD]
[TD]dog[/TD]
[/TR]
[TR]
[TD]3265[/TD]
[TD]bird[/TD]
[/TR]
[TR]
[TD]7895[/TD]
[TD]fish[/TD]
[/TR]
</tbody>[/TABLE]
I need to get it to look like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]F1[/TD]
[TD]Fish[/TD]
[TD]Dog[/TD]
[TD]Bird[/TD]
[/TR]
[TR]
[TD]1124[/TD]
[TD]x[/TD]
[TD]x[/TD]
[TD]x[/TD]
[/TR]
[TR]
[TD]1568[/TD]
[TD]x[/TD]
[TD][/TD]
[TD]x[/TD]
[/TR]
[TR]
[TD]3265[/TD]
[TD][/TD]
[TD]x[/TD]
[TD]x[/TD]
[/TR]
[TR]
[TD]7895[/TD]
[TD]x[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I tried the formula =IF((VLOOKUP($F2;a1:b8;2;FALSE))="fish";"x";"") and it works but when I do the same thing for the "dog" column it does not. I think it is only looking up to the first match and not going to where it matches again.
Any help would be great. Please remember that I am an extreme novice at this
Thanks!
[TABLE="width: 500"]
<tbody>[TR]
[TD]1124[/TD]
[TD]fish[/TD]
[/TR]
[TR]
[TD]1124[/TD]
[TD]dog[/TD]
[/TR]
[TR]
[TD]1124[/TD]
[TD]bird[/TD]
[/TR]
[TR]
[TD]1568[/TD]
[TD]fish[/TD]
[/TR]
[TR]
[TD]1568[/TD]
[TD]bird[/TD]
[/TR]
[TR]
[TD]3265[/TD]
[TD]dog[/TD]
[/TR]
[TR]
[TD]3265[/TD]
[TD]bird[/TD]
[/TR]
[TR]
[TD]7895[/TD]
[TD]fish[/TD]
[/TR]
</tbody>[/TABLE]
I need to get it to look like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]F1[/TD]
[TD]Fish[/TD]
[TD]Dog[/TD]
[TD]Bird[/TD]
[/TR]
[TR]
[TD]1124[/TD]
[TD]x[/TD]
[TD]x[/TD]
[TD]x[/TD]
[/TR]
[TR]
[TD]1568[/TD]
[TD]x[/TD]
[TD][/TD]
[TD]x[/TD]
[/TR]
[TR]
[TD]3265[/TD]
[TD][/TD]
[TD]x[/TD]
[TD]x[/TD]
[/TR]
[TR]
[TD]7895[/TD]
[TD]x[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I tried the formula =IF((VLOOKUP($F2;a1:b8;2;FALSE))="fish";"x";"") and it works but when I do the same thing for the "dog" column it does not. I think it is only looking up to the first match and not going to where it matches again.
Any help would be great. Please remember that I am an extreme novice at this
Thanks!