? doing IF(N8="pilot",(AB8+.05) but how do I avoid the "false" value for nonmatching???

B

_Bigred

I am currently using the formula below (i'm trying to add 5¢ if a person if
a pilot). But this formula returns FALSE for anyone not matching pilot. How
do I fix the formula so that it just puts the AB8 value (without addition)
into the desired cell for those that aren't pilots?


=IF(N8="pilot",(AB8+0.05),IF(N8=FALSE,AB8+0))
 
B

Bob Phillips

=IF(N8="pilot",AB8+0.05,AB8)

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
D

Dave Peterson

and one more:

=AB8+((N8="pilot")*0.05)

(I'd use Vasant's. I find his easier to read.)
 

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