Excel Formula

T

TRA

I'm new at this. Can anybody tell me how to do a formula for the following:

If A3,A4,A5,A6,A7 =0, B10=0
If A3 or A4 ="X", B10 =B2*3
If A5 or A6= "X", B10 = B2*4
If A7 = "X", B10 = B2*5
 
F

FSt1

hi,
ya ready......
=IF(AND(A3=0,A4=0,A5=0,A6=0,A7=0),0,IF(OR(A3="X",A4="X"),B2*3,IF(OR(A5="X",A6="X"),B2*4,IF(A7="X",B2*5,0))))

regards
FSt1
 
G

Gary''s Student

Try this array formula:

=IF(AND(A3:A7=0),0,IF(OR(A3="X",A4="X"),B2*3,IF(OR(A5="X",A6="X"),B2*4,IF(B7="X",B2+5,99))))
 

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