+ Reply to Thread
Results 1 to 3 of 3

ISBLANK

  1. #1
    Gimpy815
    Guest

    ISBLANK

    I have a formula in cell F9: =IF(D9=C9,"","NOT EQUAL"). It's working great.
    Now I want a formula in the next column that will compute a percentage if
    "NOT EQUAL" is returned by the first formula. I'm trying to use
    =IF(ISBLANK(F9),"",IF("NOT EQUAL",((D9/C9)-100%)). It's not working. Help?

  2. #2
    Duke Carey
    Guest

    RE: ISBLANK

    1) Since you have a formula in F9, ISBLANK(F9) will always be FALSE. Use
    =IF(F9="",
    2) Your second IF is wrong because you are testing if the text value "NOT
    EQUAL" is TRUE, which it isn't. This IF should be IF(F9="NOT EQUAL"


    By the way, since the only possiblle values for F9 are "" and "NOT EQUAL",
    you don't need both IFs


    "Gimpy815" wrote:

    > I have a formula in cell F9: =IF(D9=C9,"","NOT EQUAL"). It's working great.
    > Now I want a formula in the next column that will compute a percentage if
    > "NOT EQUAL" is returned by the first formula. I'm trying to use
    > =IF(ISBLANK(F9),"",IF("NOT EQUAL",((D9/C9)-100%)). It's not working. Help?


  3. #3
    Gimpy815
    Guest

    RE: ISBLANK

    Duke-

    Yea, it works! Thanks for the help.

    "Duke Carey" wrote:

    > 1) Since you have a formula in F9, ISBLANK(F9) will always be FALSE. Use
    > =IF(F9="",
    > 2) Your second IF is wrong because you are testing if the text value "NOT
    > EQUAL" is TRUE, which it isn't. This IF should be IF(F9="NOT EQUAL"
    >
    >
    > By the way, since the only possiblle values for F9 are "" and "NOT EQUAL",
    > you don't need both IFs
    >
    >
    > "Gimpy815" wrote:
    >
    > > I have a formula in cell F9: =IF(D9=C9,"","NOT EQUAL"). It's working great.
    > > Now I want a formula in the next column that will compute a percentage if
    > > "NOT EQUAL" is returned by the first formula. I'm trying to use
    > > =IF(ISBLANK(F9),"",IF("NOT EQUAL",((D9/C9)-100%)). It's not working. Help?


+ 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