Formula question

  • Thread starter Thread starter Scoober
  • Start date Start date
S

Scoober

I am trying to complete the following.

In s141 i have a drop list with 'yes' and 'no' as possiblities.

In x141 i have a drop list with 3 possible choices, .02 , .04 , or .08

g141 is the originating cell

p159 is the answer cell.

if s141 remains empty or has 'no' chosen from the drop list i need p159 to
remain blank, however if 'yes' is in s141 then i need the answer from g141
multiplied by .02 or .04 or .08 (which ever one is chosen from the drop list
in x141) to be displayed in p159.

Can anybody help?


Thanks in advance.

Scoober
 
hi
i assume that someone is going to enter a number in G141 and that S141 and
X141 are data validation so....
in P159 enter this formula....

=IF(OR(S141="No",S141=""),"",G141*X141)

regards
FSt1
 
Back
Top