If result is...Then text is the answer

H

heater

I need a formula that will give a text answer. I have the following, but
does not work. =IF(B70=0.01,"of Dev. Cost"),IF(B70=0.05,"of Equity")
 
G

Gary''s Student

Assuming that B70 can only be 0.01 or 0.05


=IF(B70=0.01,"of Dev. Cost","of Equity")
 
J

JE McGimpsey

One way:

=IF(B70=0.01,"of Dev. Cost,IF(B70=0.05,"of Equity","of something
else")
 
Top