Thread: Excel Formula
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default Excel Formula

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))))

--
Gary''s Student - gsnu200777


"TRA" wrote:

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