+ Reply to Thread
Results 1 to 31 of 31

sumproduct producing #VALUE!

Hybrid View

  1. #1
    Max
    Guest

    Re: sumproduct producing #VALUE!

    Perhaps try also:

    =SUMPRODUCT((Table1!J2:J5='Summary Results
    PC'!B$13)*(ISNUMBER((Table1!N2:N5))),Table1!N2:N5)

    --
    Rgds
    Max
    xl 97
    ---
    GMT+8, 1° 22' N 103° 45' E
    xdemechanik <at>yahoo<dot>com
    ----
    "philcud" <philcuddy@gmail.com> wrote in message
    news:1122299409.694686.92540@f14g2000cwb.googlegroups.com...
    > hi all,
    > i have the following formula
    >
    > =SUMPRODUCT((TABLE1!J2:J5='Summary Results PC'!B13)*(TABLE1!N2:N5))
    >
    > in effect this is a simple sumif, the reason i'm using sumproduct is
    > that i am going to expand it to more than one criteria.
    >
    > my problem lies in the range i am summing (TABLE1!N2:N5), contains text
    > and error values (first example in cell j5, if i shrink the range to
    > only look down to cell j4, it works)
    >
    > i have tried using
    >
    > '=SUMPRODUCT((TABLE1!J2:J5=='Summary Results
    > PC'!B$13)*ISNUMBER((TABLE1!N2:N5)))
    >
    > but this gives me the count of number cells in the range, not the
    > summed range needed.
    >
    > have googled this for wuite some time and have come up with no solution
    > - over to the group.
    >
    > Thanks in advance.
    >




  2. #2
    Bob Phillips
    Guest

    Re: sumproduct producing #VALUE!

    That's okay for text Max, but won't work with an error result.

    Bob

    "Max" <demechanik@yahoo.com> wrote in message
    news:%236GJZRSkFHA.2156@TK2MSFTNGP14.phx.gbl...
    > Perhaps try also:
    >
    > =SUMPRODUCT((Table1!J2:J5='Summary Results
    > PC'!B$13)*(ISNUMBER((Table1!N2:N5))),Table1!N2:N5)
    >
    > --
    > Rgds
    > Max
    > xl 97
    > ---
    > GMT+8, 1° 22' N 103° 45' E
    > xdemechanik <at>yahoo<dot>com
    > ----
    > "philcud" <philcuddy@gmail.com> wrote in message
    > news:1122299409.694686.92540@f14g2000cwb.googlegroups.com...
    > > hi all,
    > > i have the following formula
    > >
    > > =SUMPRODUCT((TABLE1!J2:J5='Summary Results PC'!B13)*(TABLE1!N2:N5))
    > >
    > > in effect this is a simple sumif, the reason i'm using sumproduct is
    > > that i am going to expand it to more than one criteria.
    > >
    > > my problem lies in the range i am summing (TABLE1!N2:N5), contains text
    > > and error values (first example in cell j5, if i shrink the range to
    > > only look down to cell j4, it works)
    > >
    > > i have tried using
    > >
    > > '=SUMPRODUCT((TABLE1!J2:J5=='Summary Results
    > > PC'!B$13)*ISNUMBER((TABLE1!N2:N5)))
    > >
    > > but this gives me the count of number cells in the range, not the
    > > summed range needed.
    > >
    > > have googled this for wuite some time and have come up with no solution
    > > - over to the group.
    > >
    > > Thanks in advance.
    > >

    >
    >




  3. #3
    Bob Phillips
    Guest

    Re: sumproduct producing #VALUE!

    That's okay for text Max, but won't work with an error result.

    Bob

    "Max" <demechanik@yahoo.com> wrote in message
    news:%236GJZRSkFHA.2156@TK2MSFTNGP14.phx.gbl...
    > Perhaps try also:
    >
    > =SUMPRODUCT((Table1!J2:J5='Summary Results
    > PC'!B$13)*(ISNUMBER((Table1!N2:N5))),Table1!N2:N5)
    >
    > --
    > Rgds
    > Max
    > xl 97
    > ---
    > GMT+8, 1° 22' N 103° 45' E
    > xdemechanik <at>yahoo<dot>com
    > ----
    > "philcud" <philcuddy@gmail.com> wrote in message
    > news:1122299409.694686.92540@f14g2000cwb.googlegroups.com...
    > > hi all,
    > > i have the following formula
    > >
    > > =SUMPRODUCT((TABLE1!J2:J5='Summary Results PC'!B13)*(TABLE1!N2:N5))
    > >
    > > in effect this is a simple sumif, the reason i'm using sumproduct is
    > > that i am going to expand it to more than one criteria.
    > >
    > > my problem lies in the range i am summing (TABLE1!N2:N5), contains text
    > > and error values (first example in cell j5, if i shrink the range to
    > > only look down to cell j4, it works)
    > >
    > > i have tried using
    > >
    > > '=SUMPRODUCT((TABLE1!J2:J5=='Summary Results
    > > PC'!B$13)*ISNUMBER((TABLE1!N2:N5)))
    > >
    > > but this gives me the count of number cells in the range, not the
    > > summed range needed.
    > >
    > > have googled this for wuite some time and have come up with no solution
    > > - over to the group.
    > >
    > > Thanks in advance.
    > >

    >
    >




  4. #4
    Max
    Guest

    Re: sumproduct producing #VALUE!

    "Bob Phillips" wrote
    > That's okay for text Max, but won't work with an error result.


    Yes, you're right. Thanks. Should have tested more thoroughly
    Looks like we've to go the array route (similar to Aladin's 2nd formula):
    =SUM(IF((Table1!J2:J5='Summary Results
    PC'!B$13)*(ISNUMBER((Table1!N2:N5))),Table1!N2:N5))
    --
    Rgds
    Max
    xl 97
    ---
    GMT+8, 1° 22' N 103° 45' E
    xdemechanik <at>yahoo<dot>com
    ----



  5. #5
    philcud
    Guest

    Re: sumproduct producing #VALUE!

    many thanks for all your help, in the end i used:
    =SUMPRODUCT((TABLE1!$J$2:$J$2000=$B$45)*(TABLE1!$V$2:$V$2000="n")*(ISNUMBER((TABLE1!$N$2:$N$2000))),TABLE1!$N$2:$N$2000)

    (note i have increased the range sizes and criteria)

    as it turned out, what i thought were na errors, was actually text
    inputted by the user.

    Thanks again


  6. #6
    Max
    Guest

    Re: sumproduct producing #VALUE!

    Glad to hear that !
    Thanks for feeding back to us ..
    --
    Rgds
    Max
    xl 97
    ---
    GMT+8, 1° 22' N 103° 45' E
    xdemechanik <at>yahoo<dot>com
    ----



  7. #7
    Max
    Guest

    Re: sumproduct producing #VALUE!

    Glad to hear that !
    Thanks for feeding back to us ..
    --
    Rgds
    Max
    xl 97
    ---
    GMT+8, 1° 22' N 103° 45' E
    xdemechanik <at>yahoo<dot>com
    ----



  8. #8
    Max
    Guest

    Re: sumproduct producing #VALUE!

    Glad to hear that !
    Thanks for feeding back to us ..
    --
    Rgds
    Max
    xl 97
    ---
    GMT+8, 1° 22' N 103° 45' E
    xdemechanik <at>yahoo<dot>com
    ----



  9. #9
    Max
    Guest

    Re: sumproduct producing #VALUE!

    Glad to hear that !
    Thanks for feeding back to us ..
    --
    Rgds
    Max
    xl 97
    ---
    GMT+8, 1° 22' N 103° 45' E
    xdemechanik <at>yahoo<dot>com
    ----



  10. #10
    Max
    Guest

    Re: sumproduct producing #VALUE!

    Glad to hear that !
    Thanks for feeding back to us ..
    --
    Rgds
    Max
    xl 97
    ---
    GMT+8, 1° 22' N 103° 45' E
    xdemechanik <at>yahoo<dot>com
    ----



  11. #11
    philcud
    Guest

    Re: sumproduct producing #VALUE!

    many thanks for all your help, in the end i used:
    =SUMPRODUCT((TABLE1!$J$2:$J$2000=$B$45)*(TABLE1!$V$2:$V$2000="n")*(ISNUMBER((TABLE1!$N$2:$N$2000))),TABLE1!$N$2:$N$2000)

    (note i have increased the range sizes and criteria)

    as it turned out, what i thought were na errors, was actually text
    inputted by the user.

    Thanks again


  12. #12
    philcud
    Guest

    Re: sumproduct producing #VALUE!

    many thanks for all your help, in the end i used:
    =SUMPRODUCT((TABLE1!$J$2:$J$2000=$B$45)*(TABLE1!$V$2:$V$2000="n")*(ISNUMBER((TABLE1!$N$2:$N$2000))),TABLE1!$N$2:$N$2000)

    (note i have increased the range sizes and criteria)

    as it turned out, what i thought were na errors, was actually text
    inputted by the user.

    Thanks again


  13. #13
    philcud
    Guest

    Re: sumproduct producing #VALUE!

    many thanks for all your help, in the end i used:
    =SUMPRODUCT((TABLE1!$J$2:$J$2000=$B$45)*(TABLE1!$V$2:$V$2000="n")*(ISNUMBER((TABLE1!$N$2:$N$2000))),TABLE1!$N$2:$N$2000)

    (note i have increased the range sizes and criteria)

    as it turned out, what i thought were na errors, was actually text
    inputted by the user.

    Thanks again


  14. #14
    philcud
    Guest

    Re: sumproduct producing #VALUE!

    many thanks for all your help, in the end i used:
    =SUMPRODUCT((TABLE1!$J$2:$J$2000=$B$45)*(TABLE1!$V$2:$V$2000="n")*(ISNUMBER((TABLE1!$N$2:$N$2000))),TABLE1!$N$2:$N$2000)

    (note i have increased the range sizes and criteria)

    as it turned out, what i thought were na errors, was actually text
    inputted by the user.

    Thanks again


  15. #15
    Max
    Guest

    Re: sumproduct producing #VALUE!

    "Bob Phillips" wrote
    > That's okay for text Max, but won't work with an error result.


    Yes, you're right. Thanks. Should have tested more thoroughly
    Looks like we've to go the array route (similar to Aladin's 2nd formula):
    =SUM(IF((Table1!J2:J5='Summary Results
    PC'!B$13)*(ISNUMBER((Table1!N2:N5))),Table1!N2:N5))
    --
    Rgds
    Max
    xl 97
    ---
    GMT+8, 1° 22' N 103° 45' E
    xdemechanik <at>yahoo<dot>com
    ----



  16. #16
    Max
    Guest

    Re: sumproduct producing #VALUE!

    "Bob Phillips" wrote
    > That's okay for text Max, but won't work with an error result.


    Yes, you're right. Thanks. Should have tested more thoroughly
    Looks like we've to go the array route (similar to Aladin's 2nd formula):
    =SUM(IF((Table1!J2:J5='Summary Results
    PC'!B$13)*(ISNUMBER((Table1!N2:N5))),Table1!N2:N5))
    --
    Rgds
    Max
    xl 97
    ---
    GMT+8, 1° 22' N 103° 45' E
    xdemechanik <at>yahoo<dot>com
    ----



  17. #17
    Max
    Guest

    Re: sumproduct producing #VALUE!

    "Bob Phillips" wrote
    > That's okay for text Max, but won't work with an error result.


    Yes, you're right. Thanks. Should have tested more thoroughly
    Looks like we've to go the array route (similar to Aladin's 2nd formula):
    =SUM(IF((Table1!J2:J5='Summary Results
    PC'!B$13)*(ISNUMBER((Table1!N2:N5))),Table1!N2:N5))
    --
    Rgds
    Max
    xl 97
    ---
    GMT+8, 1° 22' N 103° 45' E
    xdemechanik <at>yahoo<dot>com
    ----



  18. #18
    Max
    Guest

    Re: sumproduct producing #VALUE!

    "Bob Phillips" wrote
    > That's okay for text Max, but won't work with an error result.


    Yes, you're right. Thanks. Should have tested more thoroughly
    Looks like we've to go the array route (similar to Aladin's 2nd formula):
    =SUM(IF((Table1!J2:J5='Summary Results
    PC'!B$13)*(ISNUMBER((Table1!N2:N5))),Table1!N2:N5))
    --
    Rgds
    Max
    xl 97
    ---
    GMT+8, 1° 22' N 103° 45' E
    xdemechanik <at>yahoo<dot>com
    ----



  19. #19
    Bob Phillips
    Guest

    Re: sumproduct producing #VALUE!

    That's okay for text Max, but won't work with an error result.

    Bob

    "Max" <demechanik@yahoo.com> wrote in message
    news:%236GJZRSkFHA.2156@TK2MSFTNGP14.phx.gbl...
    > Perhaps try also:
    >
    > =SUMPRODUCT((Table1!J2:J5='Summary Results
    > PC'!B$13)*(ISNUMBER((Table1!N2:N5))),Table1!N2:N5)
    >
    > --
    > Rgds
    > Max
    > xl 97
    > ---
    > GMT+8, 1° 22' N 103° 45' E
    > xdemechanik <at>yahoo<dot>com
    > ----
    > "philcud" <philcuddy@gmail.com> wrote in message
    > news:1122299409.694686.92540@f14g2000cwb.googlegroups.com...
    > > hi all,
    > > i have the following formula
    > >
    > > =SUMPRODUCT((TABLE1!J2:J5='Summary Results PC'!B13)*(TABLE1!N2:N5))
    > >
    > > in effect this is a simple sumif, the reason i'm using sumproduct is
    > > that i am going to expand it to more than one criteria.
    > >
    > > my problem lies in the range i am summing (TABLE1!N2:N5), contains text
    > > and error values (first example in cell j5, if i shrink the range to
    > > only look down to cell j4, it works)
    > >
    > > i have tried using
    > >
    > > '=SUMPRODUCT((TABLE1!J2:J5=='Summary Results
    > > PC'!B$13)*ISNUMBER((TABLE1!N2:N5)))
    > >
    > > but this gives me the count of number cells in the range, not the
    > > summed range needed.
    > >
    > > have googled this for wuite some time and have come up with no solution
    > > - over to the group.
    > >
    > > Thanks in advance.
    > >

    >
    >




  20. #20
    Bob Phillips
    Guest

    Re: sumproduct producing #VALUE!

    That's okay for text Max, but won't work with an error result.

    Bob

    "Max" <demechanik@yahoo.com> wrote in message
    news:%236GJZRSkFHA.2156@TK2MSFTNGP14.phx.gbl...
    > Perhaps try also:
    >
    > =SUMPRODUCT((Table1!J2:J5='Summary Results
    > PC'!B$13)*(ISNUMBER((Table1!N2:N5))),Table1!N2:N5)
    >
    > --
    > Rgds
    > Max
    > xl 97
    > ---
    > GMT+8, 1° 22' N 103° 45' E
    > xdemechanik <at>yahoo<dot>com
    > ----
    > "philcud" <philcuddy@gmail.com> wrote in message
    > news:1122299409.694686.92540@f14g2000cwb.googlegroups.com...
    > > hi all,
    > > i have the following formula
    > >
    > > =SUMPRODUCT((TABLE1!J2:J5='Summary Results PC'!B13)*(TABLE1!N2:N5))
    > >
    > > in effect this is a simple sumif, the reason i'm using sumproduct is
    > > that i am going to expand it to more than one criteria.
    > >
    > > my problem lies in the range i am summing (TABLE1!N2:N5), contains text
    > > and error values (first example in cell j5, if i shrink the range to
    > > only look down to cell j4, it works)
    > >
    > > i have tried using
    > >
    > > '=SUMPRODUCT((TABLE1!J2:J5=='Summary Results
    > > PC'!B$13)*ISNUMBER((TABLE1!N2:N5)))
    > >
    > > but this gives me the count of number cells in the range, not the
    > > summed range needed.
    > >
    > > have googled this for wuite some time and have come up with no solution
    > > - over to the group.
    > >
    > > Thanks in advance.
    > >

    >
    >




  21. #21
    Bob Phillips
    Guest

    Re: sumproduct producing #VALUE!

    That's okay for text Max, but won't work with an error result.

    Bob

    "Max" <demechanik@yahoo.com> wrote in message
    news:%236GJZRSkFHA.2156@TK2MSFTNGP14.phx.gbl...
    > Perhaps try also:
    >
    > =SUMPRODUCT((Table1!J2:J5='Summary Results
    > PC'!B$13)*(ISNUMBER((Table1!N2:N5))),Table1!N2:N5)
    >
    > --
    > Rgds
    > Max
    > xl 97
    > ---
    > GMT+8, 1° 22' N 103° 45' E
    > xdemechanik <at>yahoo<dot>com
    > ----
    > "philcud" <philcuddy@gmail.com> wrote in message
    > news:1122299409.694686.92540@f14g2000cwb.googlegroups.com...
    > > hi all,
    > > i have the following formula
    > >
    > > =SUMPRODUCT((TABLE1!J2:J5='Summary Results PC'!B13)*(TABLE1!N2:N5))
    > >
    > > in effect this is a simple sumif, the reason i'm using sumproduct is
    > > that i am going to expand it to more than one criteria.
    > >
    > > my problem lies in the range i am summing (TABLE1!N2:N5), contains text
    > > and error values (first example in cell j5, if i shrink the range to
    > > only look down to cell j4, it works)
    > >
    > > i have tried using
    > >
    > > '=SUMPRODUCT((TABLE1!J2:J5=='Summary Results
    > > PC'!B$13)*ISNUMBER((TABLE1!N2:N5)))
    > >
    > > but this gives me the count of number cells in the range, not the
    > > summed range needed.
    > >
    > > have googled this for wuite some time and have come up with no solution
    > > - over to the group.
    > >
    > > Thanks in advance.
    > >

    >
    >




+ 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