Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default SUM PRODUCT FUNCTION

I think I need to use the SUMPRODUCT function but need help w/ the formula.

Using the following data:
Investor Name Payment Due Date Payment Amount
Sue 01/01/07 $10
Charlie 09/01/08 $20
Fred 12/08/08 $100
Charlie 01/01/06 $50
Fred 09/16/07 $100
Sue 10/01/08 $75
Sue 12/15/08 $100

I need the formula to find all payments for each investor and total only the
ones that are due later than 08/01/08. So the result should show:

Sue - $175
Charlie - $20
Fred - $100

thanks!
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,081
Default SUM PRODUCT FUNCTION

Assuming you have the payment data in columns A-C, starting in row 2, and
that the unique Investor Names are in column E, also starting in row 2, and
the date you want to compare is in D1:

=SUMPRODUCT(--(A$2:A$1000=E1),--(B$2:B$1000$D$1),C$2:C$1000)


"Sue NY" wrote:

I think I need to use the SUMPRODUCT function but need help w/ the formula.

Using the following data:
Investor Name Payment Due Date Payment Amount
Sue 01/01/07 $10
Charlie 09/01/08 $20
Fred 12/08/08 $100
Charlie 01/01/06 $50
Fred 09/16/07 $100
Sue 10/01/08 $75
Sue 12/15/08 $100

I need the formula to find all payments for each investor and total only the
ones that are due later than 08/01/08. So the result should show:

Sue - $175
Charlie - $20
Fred - $100

thanks!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 123
Default SUM PRODUCT FUNCTION

Does anyone know of a good reference for SUMPRODUCT?

On Aug 7, 2:42*pm, Duke Carey
wrote:
Assuming you have the payment data in columns A-C, starting in row 2, and
that the unique Investor Names are in column E, also starting in row 2, and
the date you want to compare is in D1:

=SUMPRODUCT(--(A$2:A$1000=E1),--(B$2:B$1000$D$1),C$2:C$1000)

"Sue NY" wrote:
I think I need to use the SUMPRODUCT function but need help w/ the formula. *


Using the following data: *
Investor Name * * * * * * Payment Due Date * * * * *Payment Amount
Sue * * * * * * * * * * * * * * 01/01/07 * * * * * * * * * * * * * *$10
Charlie * * * * * * * * * * * * 09/01/08 * * * * * * * * * * * * * *$20
Fred * * * * * * * * * * * * * *12/08/08 * * * * * * * * * * * * * *$100
Charlie * * * * * * * * * * * * 01/01/06 * * * * * * * * * * * * * *$50
Fred * * * * * * * * * * * * * * 09/16/07 * * * * * * * * * * * * * $100
Sue * * * * * * * * * * * * * * *10/01/08 * * * * * * * * * * * * * $75
Sue * * * * * * * * * * * * * * * 12/15/08 * * * * * * * * * * * * *$100


I need the formula to find all payments for each investor and total only the
ones that are due later than 08/01/08. * So the result should show:


Sue - $175
Charlie - $20
Fred - $100


thanks!


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 964
Default SUM PRODUCT FUNCTION

I assume you mean with regards to the unintentional use of SUMPRODUCT as
shown in these examples
and not what it was meant to be.

http://www.xldynamic.com/source/xld.SUMPRODUCT.html



http://www.mcgimpsey.com/excel/formulae/doubleneg.html

--


Regards,


Peo Sjoblom

"Reitanos" wrote in message
...
Does anyone know of a good reference for SUMPRODUCT?

On Aug 7, 2:42 pm, Duke Carey
wrote:
Assuming you have the payment data in columns A-C, starting in row 2, and
that the unique Investor Names are in column E, also starting in row 2,
and
the date you want to compare is in D1:

=SUMPRODUCT(--(A$2:A$1000=E1),--(B$2:B$1000$D$1),C$2:C$1000)

"Sue NY" wrote:
I think I need to use the SUMPRODUCT function but need help w/ the
formula.


Using the following data:
Investor Name Payment Due Date Payment Amount
Sue 01/01/07 $10
Charlie 09/01/08 $20
Fred 12/08/08 $100
Charlie 01/01/06 $50
Fred 09/16/07 $100
Sue 10/01/08 $75
Sue 12/15/08 $100


I need the formula to find all payments for each investor and total only
the
ones that are due later than 08/01/08. So the result should show:


Sue - $175
Charlie - $20
Fred - $100


thanks!





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 123
Default SUM PRODUCT FUNCTION

Yes. Thank you!

I have used it several times to my advantage, but never really
understood how it worked; all the documentation I could find focused
on the "original" intention of the formula and not the expanded use it
now sees.

On Aug 7, 3:02*pm, "Peo Sjoblom" wrote:
I assume you mean with regards to the unintentional use of SUMPRODUCT as
shown in these examples
and not what it was meant to be.

http://www.xldynamic.com/source/xld.SUMPRODUCT.html

http://www.mcgimpsey.com/excel/formulae/doubleneg.html

--

Regards,

Peo Sjoblom

"Reitanos" wrote in message

...
Does anyone know of a good reference for SUMPRODUCT?

On Aug 7, 2:42 pm, Duke Carey
wrote:

Assuming you have the payment data in columns A-C, starting in row 2, and
that the unique Investor Names are in column E, also starting in row 2,
and
the date you want to compare is in D1:


=SUMPRODUCT(--(A$2:A$1000=E1),--(B$2:B$1000$D$1),C$2:C$1000)


"Sue NY" wrote:
I think I need to use the SUMPRODUCT function but need help w/ the
formula.


Using the following data:
Investor Name Payment Due Date Payment Amount
Sue 01/01/07 $10
Charlie 09/01/08 $20
Fred 12/08/08 $100
Charlie 01/01/06 $50
Fred 09/16/07 $100
Sue 10/01/08 $75
Sue 12/15/08 $100


I need the formula to find all payments for each investor and total only
the
ones that are due later than 08/01/08. So the result should show:


Sue - $175
Charlie - $20
Fred - $100


thanks!


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
product function Michael Crofford Excel Worksheet Functions 2 December 1st 07 11:10 PM
Sum Product Function Maybe lostinformulas Excel Worksheet Functions 6 June 27th 06 12:51 AM
product function spiderman Excel Worksheet Functions 1 August 9th 05 08:26 PM
product function spiderman Excel Worksheet Functions 2 August 9th 05 08:08 PM
product function spiderman Excel Worksheet Functions 2 May 11th 05 01:14 PM


All times are GMT +1. The time now is 04:47 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"