+ Reply to Thread
Results 1 to 6 of 6

Why can't I add IFERROR results?

  1. #1
    Registered User
    Join Date
    05-28-2013
    Location
    Boston, MA
    MS-Off Ver
    Excel 2007
    Posts
    2

    Why can't I add IFERROR results?

    I have been racking my brain over this one. I have a complex "dashboard" to pull together different costs for each product which would allow me to quick view the total cost for each product produced. I needed to do a vlookup for two different sheets and used IFERROR in my formula. But when I try to some the row of data it does not add up the values for cells with IFERROR formulas? Can someone tell me how to do this? Below is a sample of one of my IFERROR cells.

    =IF(ISERROR(VLOOKUP(C33,'Creel Printing JSHQ'!$A:$T,4,0)),"",VLOOKUP(C33,'Creel Printing JSHQ'!$A:$T,4,0)) & IF(ISERROR(VLOOKUP(C33, 'Creel Printing CSX'!A:AB,3,0)),"", VLOOKUP(C33, 'Creel Printing CSX'!A:AB,3,0))

  2. #2
    Valued Forum Contributor
    Join Date
    09-10-2012
    Location
    Los Angeles, CA
    MS-Off Ver
    Excel 2010
    Posts
    929

    Re: Why can't I add IFERROR results?

    instead of "", try 0 instead... also, instead of & try +

  3. #3
    Valued Forum Contributor
    Join Date
    09-10-2012
    Location
    Los Angeles, CA
    MS-Off Ver
    Excel 2010
    Posts
    929

    Re: Why can't I add IFERROR results?

    instead of "", try 0 instead... also, instead of & try +

    re-post: you can re-write your formulas to this...

    =IFERROR(VLOOKUP(C33,'Creel Printing JSHQ'!$A:$T,4,0),0)+IFERROR(VLOOKUP(C33, 'Creel Printing CSX'!A:AB,3,0),0)

  4. #4
    Forum Contributor
    Join Date
    12-11-2012
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    232

    Re: Why can't I add IFERROR results?

    A sample sheet would be helpful here,

    On thing I noticed right away is IFERROR is not in your formula.

    ISERRROR does kind of the same thing, but you have to name the error you are looking for, and unless that first VL is a number that names an error it will all fail.

  5. #5
    Registered User
    Join Date
    05-28-2013
    Location
    Boston, MA
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: Why can't I add IFERROR results?

    YOU are AWESOME! Thanks!! Worked like a charm

    Quote Originally Posted by djapigo View Post
    instead of "", try 0 instead... also, instead of & try +

    re-post: you can re-write your formulas to this...

    =IFERROR(VLOOKUP(C33,'Creel Printing JSHQ'!$A:$T,4,0),0)+IFERROR(VLOOKUP(C33, 'Creel Printing CSX'!A:AB,3,0),0)

  6. #6
    Valued Forum Contributor
    Join Date
    09-10-2012
    Location
    Los Angeles, CA
    MS-Off Ver
    Excel 2010
    Posts
    929

    Re: Why can't I add IFERROR results?

    Glad it worked... please go back to your first entry and choose "SOLVED" to close out this thread...

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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