+ Reply to Thread
Results 1 to 11 of 11

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

  1. #1
    _Bigred
    Guest

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

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



  2. #2
    Sandy Mann
    Guest

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

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

    HTH

    Sandy

    --
    to e-mail direct replace @mailinator.com with @tiscali.co.uk


    "_Bigred" <[email protected]> wrote in message
    news:[email protected]...
    > 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))
    >
    >




  3. #3
    Bob Phillips
    Guest

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

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

    --

    HTH

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


    "_Bigred" <[email protected]> wrote in message
    news:[email protected]...
    > 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))
    >
    >




  4. #4
    N Harkawat
    Guest

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

    =if(n8="pilot",ab8+0.05,ab8)
    "_Bigred" <[email protected]> wrote in message
    news:[email protected]...
    >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))
    >




  5. #5
    Vasant Nanavati
    Guest

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

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

    --

    Vasant


    "_Bigred" <[email protected]> wrote in message
    news:[email protected]...
    > 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))
    >
    >




  6. #6
    Dave Peterson
    Guest

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

    and one more:

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

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

    _Bigred wrote:
    >
    > 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))


    --

    Dave Peterson

  7. #7
    _Bigred
    Guest

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

    thanks for like a charm.
    _Bigred



    "Sandy Mann" <[email protected]> wrote in message
    news:[email protected]...
    > =IF(N8="pilot",AB8+0.05,AB8+0)
    >
    > HTH
    >
    > Sandy
    >
    > --
    > to e-mail direct replace @mailinator.com with @tiscali.co.uk
    >
    >
    > "_Bigred" <[email protected]> wrote in message
    > news:[email protected]...
    >> 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))
    >>
    >>

    >
    >




  8. #8
    _Bigred
    Guest

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

    thanks for like a charm.
    _Bigred



    "Vasant Nanavati" <vasantn *AT* aol *DOT* com> wrote in message
    news:%[email protected]...
    > =AB8+IF(N8="pilot",0.05,0)
    >
    > --
    >
    > Vasant
    >
    >
    > "_Bigred" <[email protected]> wrote in message
    > news:[email protected]...
    >> 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))
    >>
    >>

    >
    >




  9. #9
    _Bigred
    Guest

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

    thanks for like a charm.
    _Bigred


    "Dave Peterson" <[email protected]> wrote in message
    news:[email protected]...
    > and one more:
    >
    > =AB8+((N8="pilot")*0.05)
    >
    > (I'd use Vasant's. I find his easier to read.)
    >
    > _Bigred wrote:
    >>
    >> 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))

    >
    > --
    >
    > Dave Peterson




  10. #10
    _Bigred
    Guest

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

    thanks for like a charm.
    _Bigred


    "N Harkawat" <[email protected]> wrote in message
    news:eK%[email protected]...
    > =if(n8="pilot",ab8+0.05,ab8)
    > "_Bigred" <[email protected]> wrote in message
    > news:[email protected]...
    >>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))
    >>

    >
    >




  11. #11
    JulieD
    Guest

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

    Hi

    does

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

    work?

    Cheers
    JulieD

    "_Bigred" <[email protected]> wrote in message
    news:[email protected]...
    >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))
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1