+ Reply to Thread
Results 1 to 9 of 9

SUMIF INDIRECT

Hybrid View

Guest SUMIF INDIRECT 11-28-2005, 07:45 AM
Guest Re: SUMIF INDIRECT 11-28-2005, 07:50 AM
Guest Re: SUMIF INDIRECT 11-28-2005, 09:00 AM
Guest Re: SUMIF INDIRECT 11-28-2005, 07:55 AM
Guest Re: SUMIF INDIRECT 11-28-2005, 09:00 AM
Guest Re: SUMIF INDIRECT 11-28-2005, 09:25 AM
Guest Re: SUMIF INDIRECT 11-28-2005, 10:10 AM
Guest Re: SUMIF INDIRECT 11-28-2005, 09:25 AM
Guest Re: SUMIF INDIRECT 11-28-2005, 10:10 AM
  1. #1
    Alectrical
    Guest

    SUMIF INDIRECT

    Hi

    Can anyone tell me how to sum a range of numbers in column D, provided that
    adjacent cells in row A contain "Apples" and row C contain "Oranges".

    Thanks
    Alec

  2. #2
    Bob Phillips
    Guest

    Re: SUMIF INDIRECT

    =SUMPRODUCT(--(A2:A200="Apples"),--(C2:C200="Oranges"),D2:D200)

    --
    HTH

    Bob Phillips

    (remove nothere from email address if mailing direct)

    "Alectrical" <Alectrical@discussions.microsoft.com> wrote in message
    news:DDB54BE4-BC29-4A54-B990-29836E0FD0F3@microsoft.com...
    > Hi
    >
    > Can anyone tell me how to sum a range of numbers in column D, provided

    that
    > adjacent cells in row A contain "Apples" and row C contain "Oranges".
    >
    > Thanks
    > Alec




  3. #3
    Alectrical
    Guest

    Re: SUMIF INDIRECT

    Thanks Bob

    "Bob Phillips" wrote:

    > =SUMPRODUCT(--(A2:A200="Apples"),--(C2:C200="Oranges"),D2:D200)
    >
    > --
    > HTH
    >
    > Bob Phillips
    >
    > (remove nothere from email address if mailing direct)
    >
    > "Alectrical" <Alectrical@discussions.microsoft.com> wrote in message
    > news:DDB54BE4-BC29-4A54-B990-29836E0FD0F3@microsoft.com...
    > > Hi
    > >
    > > Can anyone tell me how to sum a range of numbers in column D, provided

    > that
    > > adjacent cells in row A contain "Apples" and row C contain "Oranges".
    > >
    > > Thanks
    > > Alec

    >
    >
    >


  4. #4
    Guest

    Re: SUMIF INDIRECT

    Hi

    Try something like this:

    =SUMPRODUCT((A2:A1000="Apples")*(C2:C1000="Oranges")*(D2:D1000))

    When using Sumproduct, make sure that the ranges are all the same size and
    are not full columns.

    Hope this helps.
    Andy.

    "Alectrical" <Alectrical@discussions.microsoft.com> wrote in message
    news:DDB54BE4-BC29-4A54-B990-29836E0FD0F3@microsoft.com...
    > Hi
    >
    > Can anyone tell me how to sum a range of numbers in column D, provided
    > that
    > adjacent cells in row A contain "Apples" and row C contain "Oranges".
    >
    > Thanks
    > Alec




  5. #5
    Alectrical
    Guest

    Re: SUMIF INDIRECT

    Thanks Andy, your function works on a new sheet, but when I type the
    following function into an existing sheet I get the #VALUE message. Any ideas.

    =SUMPRODUCT((A13:A6000="IO")*(F13:F6000="2PLC")*(H13:H6000))

    "Andy" wrote:

    > Hi
    >
    > Try something like this:
    >
    > =SUMPRODUCT((A2:A1000="Apples")*(C2:C1000="Oranges")*(D2:D1000))
    >
    > When using Sumproduct, make sure that the ranges are all the same size and
    > are not full columns.
    >
    > Hope this helps.
    > Andy.
    >
    > "Alectrical" <Alectrical@discussions.microsoft.com> wrote in message
    > news:DDB54BE4-BC29-4A54-B990-29836E0FD0F3@microsoft.com...
    > > Hi
    > >
    > > Can anyone tell me how to sum a range of numbers in column D, provided
    > > that
    > > adjacent cells in row A contain "Apples" and row C contain "Oranges".
    > >
    > > Thanks
    > > Alec

    >
    >
    >


  6. #6
    Bob Phillips
    Guest

    Re: SUMIF INDIRECT

    Do you have text in H13:H6000? IF so, correct it or use my format.

    --
    HTH

    Bob Phillips

    (remove nothere from email address if mailing direct)

    "Alectrical" <Alectrical@discussions.microsoft.com> wrote in message
    news:2FB03CF0-16D3-4C6E-BBB0-134F3C7DD3EB@microsoft.com...
    > Thanks Andy, your function works on a new sheet, but when I type the
    > following function into an existing sheet I get the #VALUE message. Any

    ideas.
    >
    > =SUMPRODUCT((A13:A6000="IO")*(F13:F6000="2PLC")*(H13:H6000))
    >
    > "Andy" wrote:
    >
    > > Hi
    > >
    > > Try something like this:
    > >
    > > =SUMPRODUCT((A2:A1000="Apples")*(C2:C1000="Oranges")*(D2:D1000))
    > >
    > > When using Sumproduct, make sure that the ranges are all the same size

    and
    > > are not full columns.
    > >
    > > Hope this helps.
    > > Andy.
    > >
    > > "Alectrical" <Alectrical@discussions.microsoft.com> wrote in message
    > > news:DDB54BE4-BC29-4A54-B990-29836E0FD0F3@microsoft.com...
    > > > Hi
    > > >
    > > > Can anyone tell me how to sum a range of numbers in column D, provided
    > > > that
    > > > adjacent cells in row A contain "Apples" and row C contain "Oranges".
    > > >
    > > > Thanks
    > > > Alec

    > >
    > >
    > >




  7. #7
    Alectrical
    Guest

    Re: SUMIF INDIRECT

    Thanks Bob, you've been very helpful



    "Bob Phillips" wrote:

    > Do you have text in H13:H6000? IF so, correct it or use my format.
    >
    > --
    > HTH
    >
    > Bob Phillips
    >
    > (remove nothere from email address if mailing direct)
    >
    > "Alectrical" <Alectrical@discussions.microsoft.com> wrote in message
    > news:2FB03CF0-16D3-4C6E-BBB0-134F3C7DD3EB@microsoft.com...
    > > Thanks Andy, your function works on a new sheet, but when I type the
    > > following function into an existing sheet I get the #VALUE message. Any

    > ideas.
    > >
    > > =SUMPRODUCT((A13:A6000="IO")*(F13:F6000="2PLC")*(H13:H6000))
    > >
    > > "Andy" wrote:
    > >
    > > > Hi
    > > >
    > > > Try something like this:
    > > >
    > > > =SUMPRODUCT((A2:A1000="Apples")*(C2:C1000="Oranges")*(D2:D1000))
    > > >
    > > > When using Sumproduct, make sure that the ranges are all the same size

    > and
    > > > are not full columns.
    > > >
    > > > Hope this helps.
    > > > Andy.
    > > >
    > > > "Alectrical" <Alectrical@discussions.microsoft.com> wrote in message
    > > > news:DDB54BE4-BC29-4A54-B990-29836E0FD0F3@microsoft.com...
    > > > > Hi
    > > > >
    > > > > Can anyone tell me how to sum a range of numbers in column D, provided
    > > > > that
    > > > > adjacent cells in row A contain "Apples" and row C contain "Oranges".
    > > > >
    > > > > Thanks
    > > > > Alec
    > > >
    > > >
    > > >

    >
    >
    >


  8. #8
    Guest

    Re: SUMIF INDIRECT

    Hi

    You must have a text value in your H range.

    Andy.

    "Alectrical" <Alectrical@discussions.microsoft.com> wrote in message
    news:2FB03CF0-16D3-4C6E-BBB0-134F3C7DD3EB@microsoft.com...
    > Thanks Andy, your function works on a new sheet, but when I type the
    > following function into an existing sheet I get the #VALUE message. Any
    > ideas.
    >
    > =SUMPRODUCT((A13:A6000="IO")*(F13:F6000="2PLC")*(H13:H6000))
    >
    > "Andy" wrote:
    >
    >> Hi
    >>
    >> Try something like this:
    >>
    >> =SUMPRODUCT((A2:A1000="Apples")*(C2:C1000="Oranges")*(D2:D1000))
    >>
    >> When using Sumproduct, make sure that the ranges are all the same size
    >> and
    >> are not full columns.
    >>
    >> Hope this helps.
    >> Andy.
    >>
    >> "Alectrical" <Alectrical@discussions.microsoft.com> wrote in message
    >> news:DDB54BE4-BC29-4A54-B990-29836E0FD0F3@microsoft.com...
    >> > Hi
    >> >
    >> > Can anyone tell me how to sum a range of numbers in column D, provided
    >> > that
    >> > adjacent cells in row A contain "Apples" and row C contain "Oranges".
    >> >
    >> > Thanks
    >> > Alec

    >>
    >>
    >>




  9. #9
    Alectrical
    Guest

    Re: SUMIF INDIRECT

    Thanks again Andy, you've been very helpful


    "Andy" wrote:

    > Hi
    >
    > You must have a text value in your H range.
    >
    > Andy.
    >
    > "Alectrical" <Alectrical@discussions.microsoft.com> wrote in message
    > news:2FB03CF0-16D3-4C6E-BBB0-134F3C7DD3EB@microsoft.com...
    > > Thanks Andy, your function works on a new sheet, but when I type the
    > > following function into an existing sheet I get the #VALUE message. Any
    > > ideas.
    > >
    > > =SUMPRODUCT((A13:A6000="IO")*(F13:F6000="2PLC")*(H13:H6000))
    > >
    > > "Andy" wrote:
    > >
    > >> Hi
    > >>
    > >> Try something like this:
    > >>
    > >> =SUMPRODUCT((A2:A1000="Apples")*(C2:C1000="Oranges")*(D2:D1000))
    > >>
    > >> When using Sumproduct, make sure that the ranges are all the same size
    > >> and
    > >> are not full columns.
    > >>
    > >> Hope this helps.
    > >> Andy.
    > >>
    > >> "Alectrical" <Alectrical@discussions.microsoft.com> wrote in message
    > >> news:DDB54BE4-BC29-4A54-B990-29836E0FD0F3@microsoft.com...
    > >> > Hi
    > >> >
    > >> > Can anyone tell me how to sum a range of numbers in column D, provided
    > >> > that
    > >> > adjacent cells in row A contain "Apples" and row C contain "Oranges".
    > >> >
    > >> > Thanks
    > >> > Alec
    > >>
    > >>
    > >>

    >
    >
    >


+ 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