Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 273
Default Sum Product Question

Hello all. I am having a problem witha sum product formula. I have Mulitple
Conditions and have to use the + sign to include all of them. Hereis an
example of my formula:

=Sumproduct((Range1=200601)*((Range2<1000)+(Range 2<2534)+(Range2<7486))*(Range3)*(Range4))

This formula returns a value but it is much higher than it should be. I
have read places about possbily using an array inside myformula to help take
care of this but I have not had any luck yet.

Any help you can provide would be greatly appreciated.

Thanks,
Chad
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
 
Posts: n/a
Default Sum Product Question

Hi

I would suggest using separate SUMPRODUCTs rather than using the + method:
=Sumproduct((Range1=200601)*(Range2<1000)*(Range3 )*(Range4))+Sumproduct((Range1=200601)*(Range2<25 34)*(Range3)*(Range4))+Sumproduct((Range1=200601)* (Range2<7486)*(Range3)*(Range4))

Hope this helps.
Andy.

"Chad" wrote in message
...
Hello all. I am having a problem witha sum product formula. I have
Mulitple
Conditions and have to use the + sign to include all of them. Hereis an
example of my formula:

=Sumproduct((Range1=200601)*((Range2<1000)+(Range 2<2534)+(Range2<7486))*(Range3)*(Range4))

This formula returns a value but it is much higher than it should be. I
have read places about possbily using an array inside myformula to help
take
care of this but I have not had any luck yet.

Any help you can provide would be greatly appreciated.

Thanks,
Chad



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Sum Product Question

You probably want

=SUMPRODUCT(--(Range1=200601),--(Range2<1000),--(Range2<2534),--(Range2<7
486),Range3,Range4)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Chad" wrote in message
...
Hello all. I am having a problem witha sum product formula. I have

Mulitple
Conditions and have to use the + sign to include all of them. Hereis an
example of my formula:


=Sumproduct((Range1=200601)*((Range2<1000)+(Range 2<2534)+(Range2<7486))*(
Range3)*(Range4))

This formula returns a value but it is much higher than it should be. I
have read places about possbily using an array inside myformula to help

take
care of this but I have not had any luck yet.

Any help you can provide would be greatly appreciated.

Thanks,
Chad



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 52
Default Sum Product Question

Looks like...

=SUMPRODUCT(--(Range1=200601),--ISNA(MATCH(Range2,{1000,2534,7486},0)),Range3,Rang e4)

Chad wrote:
Hello all. I am having a problem witha sum product formula. I have Mulitple
Conditions and have to use the + sign to include all of them. Hereis an
example of my formula:

=Sumproduct((Range1=200601)*((Range2<1000)+(Range 2<2534)+(Range2<7486))*(Range3)*(Range4))

This formula returns a value but it is much higher than it should be. I
have read places about possbily using an array inside myformula to help take
care of this but I have not had any luck yet.

Any help you can provide would be greatly appreciated.

Thanks,
Chad

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
Complex Excel Problem involving Step Costs jcc Excel Worksheet Functions 3 March 15th 06 10:15 PM
Sum Product Question force530 Excel Worksheet Functions 2 July 5th 05 05:57 PM
Counting Rows/Columns for Copying Formulas SamDev Excel Discussion (Misc queries) 0 June 24th 05 04:13 AM
Which Function(s) do I use? LB Excel Worksheet Functions 3 January 6th 05 02:53 AM
If statement needed Patsy Excel Worksheet Functions 1 November 4th 04 03:48 PM


All times are GMT +1. The time now is 05:19 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"