+ Reply to Thread
Results 1 to 9 of 9

Sum+IFERROR Help

  1. #1
    Registered User
    Join Date
    12-27-2012
    Location
    Portland,OR
    MS-Off Ver
    Excel 2010
    Posts
    49

    Sum+IFERROR Help

    Okay Guys,

    I just had help on something similar I found it so useful I wanted to implement it on a different worksheet thought I could figure it out , but no go. Anyway I want cell w12 to read nothing when cell o12 has any integer including 0 in it howver when cells o12 p-u12 and v12 have something in them I need it the formula 012+p12:u12-v12 to come up now there may only be 1 cell between
    p12:u12 that hasa number. If thats too confusing which I'm sure it is i can better try to explain and attach a workbook.

    Right now Ihave this
    =IF((SUM(O13:U13)-V13)=0,"",IFERROR(O13+P13+Q13+R13+S13+T13+U13-V13,""))
    but when cell o13 has a number and nothing else does it reads that number if only o13 has a number I need it to read nothing.

    Any Help Appreciated,

    CW
    Last edited by chriswiec; 01-27-2013 at 08:41 AM. Reason: Added info

  2. #2
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,733

    Re: Sum+IFERROR Help

    You could try something like this:

    =IF(SUM(O13:U13)-V13=0,"",IF(AND(O13<>0,COUNT(P13:V13)=0),"",IFERROR(SUM(O13:U13,-V13),"")))

    Hope this helps.

    Pete

  3. #3
    Registered User
    Join Date
    12-27-2012
    Location
    Portland,OR
    MS-Off Ver
    Excel 2010
    Posts
    49

    Re: Sum+IFERROR Help

    Yes thats almost exactly what I want, is there anyway if o13 even contains a zero when the other cells have info that w13 will give a number based on the addition subtraction formula?
    So if o13 is 0 and q13 is 1 and v13 is 1 i still get a number in w13? That would be amazing!

  4. #4
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,733

    Re: Sum+IFERROR Help

    With those particular numbers, it is the first part of the formula which is causing your formula to return a blank, so maybe you want this:

    =IF(COUNT(O13:V13)=0,"",IF(AND(O13<>0,COUNT(P13:V13)=0),"",IFERROR(SUM(O13:U13,-V13),"")))

    Hope this helps.

    Pete

  5. #5
    Registered User
    Join Date
    12-27-2012
    Location
    Portland,OR
    MS-Off Ver
    Excel 2010
    Posts
    49

    Re: Sum+IFERROR Help

    Oh Ya thats it, nice work you're awesome?

    Much Thanks,

    CW

  6. #6
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,733

    Re: Sum+IFERROR Help

    Thanks for feeding back. Why not click on a "star" as well as marking the thread as solved?

    Pete

  7. #7
    Registered User
    Join Date
    12-27-2012
    Location
    Portland,OR
    MS-Off Ver
    Excel 2010
    Posts
    49

    Re: Sum+IFERROR Help

    Do you mean the reputation star?

  8. #8
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,733

    Re: Sum+IFERROR Help

    Yeah, don't worry about it though, as the Forum likes you to spread them around, so I don't think you can give consecutive reps to the same person.

    Note, though, that you can click on the star icon on ANY post that you find helpful, even in threads that you have not contributed to.

    Pete

  9. #9
    Registered User
    Join Date
    12-27-2012
    Location
    Portland,OR
    MS-Off Ver
    Excel 2010
    Posts
    49

    Re: Sum+IFERROR Help

    Still wont let megive your more I can give it randomly to other people and then you again if you want?

+ 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