+ Reply to Thread
Results 1 to 5 of 5

Conditional Sum Argument results do not equal cell results Excel

  1. #1
    Randy R Mullins
    Guest

    Conditional Sum Argument results do not equal cell results Excel

    I am using a consitional sum with three variables =SUM(IF('Current Period
    NSA'!$D$8:$D$3000=A23,IF('Current Period NSA'!$E$8:$E$3000=B23,IF('Current
    Period NSA'!$H$8:$H$3000=C23,'Current Period NSA'!$AB$8:$AB$3000,0),0),0))
    The argument itself shows the correct answer when I edit the formula but when
    I close the argument window the cell shows a value of 0.


  2. #2
    Tom Hutchins
    Guest

    RE: Conditional Sum Argument results do not equal cell results Excel

    Your formula works when I try it. It sums the value in column AB (in rows 8
    through 3000) for every row in which column D = cell A23, column D = cell
    B23, and column H = cell C23. For example, if D10 = A23 and D10 = B23 and
    H10 = C23, the formula retrieves the value from AB10. Is this what you
    intended?

    Although you do not mention it, this is an array formula, which must be
    entered by pressing Ctrl+Shift+Enter together.

    Hope this helps,

    Hutch

    "Randy R Mullins" wrote:

    > I am using a consitional sum with three variables =SUM(IF('Current Period
    > NSA'!$D$8:$D$3000=A23,IF('Current Period NSA'!$E$8:$E$3000=B23,IF('Current
    > Period NSA'!$H$8:$H$3000=C23,'Current Period NSA'!$AB$8:$AB$3000,0),0),0))
    > The argument itself shows the correct answer when I edit the formula but when
    > I close the argument window the cell shows a value of 0.
    >


  3. #3
    Randy R Mullins
    Guest

    RE: Conditional Sum Argument results do not equal cell results Exc

    Thanks the array piece is what eluded me - have not had much reason to use
    them.
    Thanks again

    "Tom Hutchins" wrote:

    > Your formula works when I try it. It sums the value in column AB (in rows 8
    > through 3000) for every row in which column D = cell A23, column D = cell
    > B23, and column H = cell C23. For example, if D10 = A23 and D10 = B23 and
    > H10 = C23, the formula retrieves the value from AB10. Is this what you
    > intended?
    >
    > Although you do not mention it, this is an array formula, which must be
    > entered by pressing Ctrl+Shift+Enter together.
    >
    > Hope this helps,
    >
    > Hutch
    >
    > "Randy R Mullins" wrote:
    >
    > > I am using a consitional sum with three variables =SUM(IF('Current Period
    > > NSA'!$D$8:$D$3000=A23,IF('Current Period NSA'!$E$8:$E$3000=B23,IF('Current
    > > Period NSA'!$H$8:$H$3000=C23,'Current Period NSA'!$AB$8:$AB$3000,0),0),0))
    > > The argument itself shows the correct answer when I edit the formula but when
    > > I close the argument window the cell shows a value of 0.
    > >


  4. #4
    Tom Hutchins
    Guest

    RE: Conditional Sum Argument results do not equal cell results Exc

    Thanks for the feedback. BTW, the following SUMPRODUCT formula gives the same
    results as the array formula:

    =SUMPRODUCT(--($D$8:$D$3000=A23),--($E$8:$E$3000=B23),--($H$8:$H$3000=C23),($AB$8:$AB$3000))

    Regards,

    Hutch

    "Randy R Mullins" wrote:

    > Thanks the array piece is what eluded me - have not had much reason to use
    > them.
    > Thanks again
    >
    > "Tom Hutchins" wrote:
    >
    > > Your formula works when I try it. It sums the value in column AB (in rows 8
    > > through 3000) for every row in which column D = cell A23, column D = cell
    > > B23, and column H = cell C23. For example, if D10 = A23 and D10 = B23 and
    > > H10 = C23, the formula retrieves the value from AB10. Is this what you
    > > intended?
    > >
    > > Although you do not mention it, this is an array formula, which must be
    > > entered by pressing Ctrl+Shift+Enter together.
    > >
    > > Hope this helps,
    > >
    > > Hutch
    > >
    > > "Randy R Mullins" wrote:
    > >
    > > > I am using a consitional sum with three variables =SUM(IF('Current Period
    > > > NSA'!$D$8:$D$3000=A23,IF('Current Period NSA'!$E$8:$E$3000=B23,IF('Current
    > > > Period NSA'!$H$8:$H$3000=C23,'Current Period NSA'!$AB$8:$AB$3000,0),0),0))
    > > > The argument itself shows the correct answer when I edit the formula but when
    > > > I close the argument window the cell shows a value of 0.
    > > >


  5. #5
    Tom Hutchins
    Guest

    RE: Conditional Sum Argument results do not equal cell results Exc

    Thanks for the feedback. BTW, the following SUMPRODUCT formula gives the same
    results as the array formula:

    =SUMPRODUCT(--($D$8:$D$3000=A23),--($E$8:$E$3000=B23),--($H$8:$H$3000=C23),($AB$8:$AB$3000))

    Regards,

    Hutch

    "Randy R Mullins" wrote:

    > Thanks the array piece is what eluded me - have not had much reason to use
    > them.
    > Thanks again
    >
    > "Tom Hutchins" wrote:
    >
    > > Your formula works when I try it. It sums the value in column AB (in rows 8
    > > through 3000) for every row in which column D = cell A23, column D = cell
    > > B23, and column H = cell C23. For example, if D10 = A23 and D10 = B23 and
    > > H10 = C23, the formula retrieves the value from AB10. Is this what you
    > > intended?
    > >
    > > Although you do not mention it, this is an array formula, which must be
    > > entered by pressing Ctrl+Shift+Enter together.
    > >
    > > Hope this helps,
    > >
    > > Hutch
    > >
    > > "Randy R Mullins" wrote:
    > >
    > > > I am using a consitional sum with three variables =SUM(IF('Current Period
    > > > NSA'!$D$8:$D$3000=A23,IF('Current Period NSA'!$E$8:$E$3000=B23,IF('Current
    > > > Period NSA'!$H$8:$H$3000=C23,'Current Period NSA'!$AB$8:$AB$3000,0),0),0))
    > > > The argument itself shows the correct answer when I edit the formula but when
    > > > I close the argument window the cell shows a value of 0.
    > > >


+ 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