If then statement

G

Guest

I have a spreadsheet that i need to do an if then statement for that I can't
figurar out. This is what I need done: Any number that equals the same as
the key row needs to be displayed in the results row. See below

Key B C D E F
G Results
1 1 2 3 4 5
6 1
2 2 3 4 5 1
5 2
3 3 4 5 1 2
7 2

So in the results column i need to put the if then statement = If column
B:F=A1 or " " then =

I hope someone can understand this.
 
P

Pete_UK

I assume your final 2 in the example is a typo and should be 3 (so I
understand your problem), and if so you can try this in H1:

=IF(COUNTIF(B1:G1,A1)>0,A1,"")

and copy down as required.

Hope this helps.

Pete
 
D

David Biddulph

I don't entirely understand what you're asking for.
Are you saying that if the value in A1 is found anywhere in the range B1:F1
you want that A1 value writing into the results column in row 1, but
otherwise you want " " (or perhaps you want ""?)?
If so, there are a couple of things I don't understand about your examples:
Where (if at all) does column G come into the calculation?
Why in the third row of examples do you have a 2 in the results column, when
you had a 3 in columns A and B?
 

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