#1   Report Post  
Posted to microsoft.public.excel.misc
Moz Moz is offline
external usenet poster
 
Posts: 11
Default SumProduct

I currently am setting up a spread sheet with the following excel
headings.Period Product Producer Vendor Stk # Orig Sale "Refund
Vendor" "Refund
LTT" "Total
Refund"
Jan-07 FIReserve RSE Galt 12345 2,759.42 1,240.89 896.40 2,137.29

I am trying to use SumProduct to but keep getting a value error. The
statement that I am using is
=sumproduct("Product=FIReserve")*(Producer="MSE")* (Refund_LTT).

What am I doing wrong?



  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default SumProduct


Lots of stuff.
You can't use headings but you can name your ranges
=sumproduct("Product=FIReserve")*(Producer="MSE")* (Refund_LTT).
Your FORMULA (not statement) to sum c based on criteria in a and b
=sumproduct((a2:a22="FIReserve")*(b2:b22="MSE")*c2 :c22)


--
Don Guillett
SalesAid Software

"Moz" wrote in message
...
I currently am setting up a spread sheet with the following excel
headings.Period Product Producer Vendor Stk # Orig Sale "Refund
Vendor" "Refund
LTT" "Total
Refund"
Jan-07 FIReserve RSE Galt 12345 2,759.42 1,240.89 896.40 2,137.29

I am trying to use SumProduct to but keep getting a value error. The
statement that I am using is
=sumproduct("Product=FIReserve")*(Producer="MSE")* (Refund_LTT).

What am I doing wrong?





  #3   Report Post  
Posted to microsoft.public.excel.misc
Moz Moz is offline
external usenet poster
 
Posts: 11
Default SumProduct

I setup a Range a2:a30 named Period_rng, I also setup b2:b30 as
Producer_rng, I also setup Refund_LTT as c2:c30. I create a cell called
SelectMonth. Period_rng, Producer_rng, and SelectMonth are validated by a
list. SelectMonth and Period_rng use the same list Jan-07, Feb-07, etc to
Dec-07. When I type
=sumproduct(Period_rng=SelectMonth)*(Producer_rng= "RSE")*(Refund_LTT) I get a
value error.

"Don Guillett" wrote:


Lots of stuff.
You can't use headings but you can name your ranges
=sumproduct("Product=FIReserve")*(Producer="MSE")* (Refund_LTT).
Your FORMULA (not statement) to sum c based on criteria in a and b
=sumproduct((a2:a22="FIReserve")*(b2:b22="MSE")*c2 :c22)


--
Don Guillett
SalesAid Software

"Moz" wrote in message
...
I currently am setting up a spread sheet with the following excel
headings.Period Product Producer Vendor Stk # Orig Sale "Refund
Vendor" "Refund
LTT" "Total
Refund"
Jan-07 FIReserve RSE Galt 12345 2,759.42 1,240.89 896.40 2,137.29

I am trying to use SumProduct to but keep getting a value error. The
statement that I am using is
=sumproduct("Product=FIReserve")*(Producer="MSE")* (Refund_LTT).

What am I doing wrong?






  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default SumProduct

When all else fails, use the proper syntax as I posted
=sumproduct(Period_rng=SelectMonth)*(Producer_rng= "RSE")*(Refund_LTT)
=sumproduct((Period_rng=SelectMonth)*(Producer_rng ="RSE")*Refund_LTT)
--
Don Guillett
SalesAid Software

"Moz" wrote in message
...
I setup a Range a2:a30 named Period_rng, I also setup b2:b30 as
Producer_rng, I also setup Refund_LTT as c2:c30. I create a cell called
SelectMonth. Period_rng, Producer_rng, and SelectMonth are validated by a
list. SelectMonth and Period_rng use the same list Jan-07, Feb-07, etc to
Dec-07. When I type
=sumproduct(Period_rng=SelectMonth)*(Producer_rng= "RSE")*(Refund_LTT) I
get a
value error.

"Don Guillett" wrote:


Lots of stuff.
You can't use headings but you can name your ranges
=sumproduct("Product=FIReserve")*(Producer="MSE")* (Refund_LTT).
Your FORMULA (not statement) to sum c based on criteria in a and b
=sumproduct((a2:a22="FIReserve")*(b2:b22="MSE")*c2 :c22)


--
Don Guillett
SalesAid Software

"Moz" wrote in message
...
I currently am setting up a spread sheet with the following excel
headings.Period Product Producer Vendor Stk # Orig Sale "Refund
Vendor" "Refund
LTT" "Total
Refund"
Jan-07 FIReserve RSE Galt 12345 2,759.42 1,240.89 896.40 2,137.29

I am trying to use SumProduct to but keep getting a value error. The
statement that I am using is
=sumproduct("Product=FIReserve")*(Producer="MSE")* (Refund_LTT).

What am I doing wrong?








  #5   Report Post  
Posted to microsoft.public.excel.misc
Moz Moz is offline
external usenet poster
 
Posts: 11
Default SumProduct

Your are right!! Thank you!!!

"Don Guillett" wrote:

When all else fails, use the proper syntax as I posted
=sumproduct(Period_rng=SelectMonth)*(Producer_rng= "RSE")*(Refund_LTT)
=sumproduct((Period_rng=SelectMonth)*(Producer_rng ="RSE")*Refund_LTT)
--
Don Guillett
SalesAid Software

"Moz" wrote in message
...
I setup a Range a2:a30 named Period_rng, I also setup b2:b30 as
Producer_rng, I also setup Refund_LTT as c2:c30. I create a cell called
SelectMonth. Period_rng, Producer_rng, and SelectMonth are validated by a
list. SelectMonth and Period_rng use the same list Jan-07, Feb-07, etc to
Dec-07. When I type
=sumproduct(Period_rng=SelectMonth)*(Producer_rng= "RSE")*(Refund_LTT) I
get a
value error.

"Don Guillett" wrote:


Lots of stuff.
You can't use headings but you can name your ranges
=sumproduct("Product=FIReserve")*(Producer="MSE")* (Refund_LTT).
Your FORMULA (not statement) to sum c based on criteria in a and b
=sumproduct((a2:a22="FIReserve")*(b2:b22="MSE")*c2 :c22)


--
Don Guillett
SalesAid Software

"Moz" wrote in message
...
I currently am setting up a spread sheet with the following excel
headings.Period Product Producer Vendor Stk # Orig Sale "Refund
Vendor" "Refund
LTT" "Total
Refund"
Jan-07 FIReserve RSE Galt 12345 2,759.42 1,240.89 896.40 2,137.29

I am trying to use SumProduct to but keep getting a value error. The
statement that I am using is
=sumproduct("Product=FIReserve")*(Producer="MSE")* (Refund_LTT).

What am I doing wrong?











  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default SumProduct

Glad to help. Merry xmas


--
Don Guillett
SalesAid Software

"Moz" wrote in message
...
Your are right!! Thank you!!!

"Don Guillett" wrote:

When all else fails, use the proper syntax as I posted
=sumproduct(Period_rng=SelectMonth)*(Producer_rng= "RSE")*(Refund_LTT)
=sumproduct((Period_rng=SelectMonth)*(Producer_rng ="RSE")*Refund_LTT)
--
Don Guillett
SalesAid Software

"Moz" wrote in message
...
I setup a Range a2:a30 named Period_rng, I also setup b2:b30 as
Producer_rng, I also setup Refund_LTT as c2:c30. I create a cell
called
SelectMonth. Period_rng, Producer_rng, and SelectMonth are validated
by a
list. SelectMonth and Period_rng use the same list Jan-07, Feb-07, etc
to
Dec-07. When I type
=sumproduct(Period_rng=SelectMonth)*(Producer_rng= "RSE")*(Refund_LTT) I
get a
value error.

"Don Guillett" wrote:


Lots of stuff.
You can't use headings but you can name your ranges
=sumproduct("Product=FIReserve")*(Producer="MSE")* (Refund_LTT).
Your FORMULA (not statement) to sum c based on criteria in a and b
=sumproduct((a2:a22="FIReserve")*(b2:b22="MSE")*c2 :c22)


--
Don Guillett
SalesAid Software

"Moz" wrote in message
...
I currently am setting up a spread sheet with the following excel
headings.Period Product Producer Vendor Stk # Orig Sale "Refund
Vendor" "Refund
LTT" "Total
Refund"
Jan-07 FIReserve RSE Galt 12345 2,759.42 1,240.89 896.40 2,137.29

I am trying to use SumProduct to but keep getting a value error.
The
statement that I am using is
=sumproduct("Product=FIReserve")*(Producer="MSE")* (Refund_LTT).

What am I doing wrong?











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
Adding "OR" to a Sumproduct Formula Duke Carey Excel Worksheet Functions 0 March 21st 06 06:41 PM
Sumproduct Peter B Excel Worksheet Functions 1 March 7th 05 01:59 PM
sumproduct causing memory errors? dave Excel Worksheet Functions 1 March 3rd 05 09:31 AM
Sumproduct function not working Scott Summerlin Excel Worksheet Functions 12 December 4th 04 05:15 AM
adding two sumproduct formulas together ski2004_2005 Excel Worksheet Functions 1 November 12th 04 09:08 PM


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