+ Reply to Thread
Results 1 to 6 of 6

=ISBLANK Not working as expected

  1. #1
    Registered User
    Join Date
    12-09-2008
    Location
    Tucson, AZ
    MS-Off Ver
    Office 2013
    Posts
    37

    Question =ISBLANK Not working as expected

    I have an Excel sheet where I'm using the =IF(ISBLANK) and telling it to return a blank in another cell, otherwise add 2 cells together. When it does this, it is returning a zero instead of a blank.

    The formulas I'm using are:

    This is cell H3 =IF(ISBLANK($G3),"",RANK($G3,$G$3:G$56,0)) This one works properly and the cell is blank because there is nothing in call G3.

    =IF(ISBLANK($H3),"",($G3+$I3)) This one references cell H3 where the above formula lives and isn't working, it returns a 0 and I need it to return a blank.

    What am I missing?

  2. #2
    Valued Forum Contributor loginjmor's Avatar
    Join Date
    01-31-2013
    Location
    Cedar Rapids, Iowa
    MS-Off Ver
    Excel 2013
    Posts
    1,073

    Re: =ISBLANK Not working as expected

    Hi -

    The ISBLANK function checks to see if a cell is empty. Unfortunately, Excel does not consider "" as empty.
    ____________________________________________
    If this has solved your problem, please edit the thread title to add the word [SOLVED] at the beginning. You can do this by
    -Go to the top of the first post
    -Select Thread Tools
    -Select Mark thread as Solved

    If I have been particularly helpful, please "bump" my reputation by pressing the small star in the lower left corner of my post.

  3. #3
    Forum Contributor
    Join Date
    07-13-2015
    Location
    Quebec, Canada
    MS-Off Ver
    2013
    Posts
    232

    Re: =ISBLANK Not working as expected

    You could always change your ISBLANK(Cell) for OR(ISBLANK(Cell),Cell="")

  4. #4
    Valued Forum Contributor loginjmor's Avatar
    Join Date
    01-31-2013
    Location
    Cedar Rapids, Iowa
    MS-Off Ver
    Excel 2013
    Posts
    1,073

    Re: =ISBLANK Not working as expected

    Or you could reverse the logic in your second formula to check if cell H3 contains a number, rather than a blank. It would look something like:

    =IF(ISNUMBER($H3),($G3+$I3),"")

  5. #5
    Registered User
    Join Date
    12-09-2008
    Location
    Tucson, AZ
    MS-Off Ver
    Office 2013
    Posts
    37

    Re: =ISBLANK Not working as expected

    Thanks loginjmor! Worked perfectly!

  6. #6
    Valued Forum Contributor loginjmor's Avatar
    Join Date
    01-31-2013
    Location
    Cedar Rapids, Iowa
    MS-Off Ver
    Excel 2013
    Posts
    1,073

    Re: =ISBLANK Not working as expected

    Great! Thanks for the rep!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Conditional formatting ISBLANK not working?
    By taylorsm in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 04-01-2016, 09:36 AM
  2. [SOLVED] ISBLANK not working
    By douglascaixeta in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 12-02-2014, 10:49 AM
  3. If(ISBlank is working now want to add another IF
    By mtr1213 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 08-12-2014, 12:05 PM
  4. [SOLVED] IF formula not working =IF(NOT(ISBLANK(M3)),"",IF(ISBLANK(L3),"",TODAY()-L3))
    By amthyst826 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 03-06-2014, 02:37 PM
  5. [SOLVED] ISBLANK not working
    By gocolonel77 in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 12-26-2013, 02:08 PM
  6. [SOLVED] IF ISBLANK not working
    By Baishamao in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 07-02-2013, 10:36 AM
  7. [SOLVED] Isblank Function not working in VBA
    By ExcelMonkey in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 03-16-2005, 08:06 AM

Tags for this Thread

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