+ Reply to Thread
Results 1 to 2 of 2

using ISBLANK

  1. #1
    Forum Contributor
    Join Date
    12-03-2008
    Location
    Key West, FL
    MS-Off Ver
    365 Apps for Enterprise
    Posts
    666

    using ISBLANK

    I've attached a spreadsheet which is to become a template for multiple reports.

    I've tried to generate a graph using the table illustrated in the attached file, but am having difficulty.

    Some of the tables will have empty cells. In my reports, an empty cell must not be counted as a zero. But if the empty cell becomes part of a formula using ISBLANK or ISNUMBER, the result is #VALUE!


    Any advice?

    Thanks.
    Attached Files Attached Files

  2. #2
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: using ISBLANK

    In R39 you have:
    =IF(ISBLANK(C39),"",C39)+Q39
    You are getting #VALUE result in R39 because you are trying to add the result of Q39 (which is "") to the result of the test for ISBLANK() which is also "".

    Change the formula in R39 to:
    =IF(ISBLANK(C39),"",C39+Q39)
    to get blank results.

+ 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