Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 106
Default SUM Product formula help needed

I have a SUMIF formula

SUMIF(U3:U3000,"<cleared",Q3:Q3000)

that sums a value stored in column Q items that do not have a status of
cleared (status is located in column U)

I want to add a second criteria to only sumif the above is true and i have
column L that has the number of days the invoice is past due - i only want to
include in the subtotal items that are 30 days or greater

Is this a sum product function and how would i write that?


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default SUM Product formula help needed

One way

=SUMPRODUCT(--(U3:U3000<"cleared"),--(L3:L3000=30),Q3:Q3000)


--


Regards,


Peo Sjoblom


"Belinda7237" wrote in message
...
I have a SUMIF formula

SUMIF(U3:U3000,"<cleared",Q3:Q3000)

that sums a value stored in column Q items that do not have a status of
cleared (status is located in column U)

I want to add a second criteria to only sumif the above is true and i have
column L that has the number of days the invoice is past due - i only want
to
include in the subtotal items that are 30 days or greater

Is this a sum product function and how would i write that?




  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default SUM Product formula help needed

Try

=SUMPRODUCT((U3:U3000<"Cleared")*(L3:L3000<TODAY( )-30)*(Q3:Q3000))

"Belinda7237" wrote:

I have a SUMIF formula

SUMIF(U3:U3000,"<cleared",Q3:Q3000)

that sums a value stored in column Q items that do not have a status of
cleared (status is located in column U)

I want to add a second criteria to only sumif the above is true and i have
column L that has the number of days the invoice is past due - i only want to
include in the subtotal items that are 30 days or greater

Is this a sum product function and how would i write that?


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default SUM Product formula help needed

=SUMPRODUCT(--(U3:U3000<"cleared"),--(L3:L3000=30),Q3:Q3000)


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Belinda7237" wrote in message
...
I have a SUMIF formula

SUMIF(U3:U3000,"<cleared",Q3:Q3000)

that sums a value stored in column Q items that do not have a status of
cleared (status is located in column U)

I want to add a second criteria to only sumif the above is true and i have
column L that has the number of days the invoice is past due - i only want
to
include in the subtotal items that are 30 days or greater

Is this a sum product function and how would i write that?




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default SUM Product formula help needed

Try this:

=SUMPRODUCT((U3:U3000<"cleared")*(L3:L300030)*(Q 3:Q3000))

Hope this helps.

Pete

On Jul 1, 7:07*pm, Belinda7237
wrote:
I have a SUMIF formula

SUMIF(U3:U3000,"<cleared",Q3:Q3000)

that sums a value stored in column Q items that do not have a status of
cleared (status is located in column U)

I want to add a second criteria to only sumif the above is true and i have
column L that has the number of days the invoice is past due - i only want to
include in the subtotal items that are 30 days or greater

Is this a sum product function and how would i write that?




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default SUM Product formula help needed

Is this a sum product function and how would i write that?

SUMPRODUCT will do this but if you're using Excel 2007 then the SUMIFS
function would be a better choice.

=SUMIFS(Q3:Q3000,L3:L3000,"30",U3:U3000,"<cleare d")

SUMPRODUCT will work in any version from 97-2007

=SUMPRODUCT(--(L3:L30030),--(U3:U3000<"cleared"),Q3:Q3000)

Better to use cells to hold the criteria:

A1 = 30
B1 = cleared

=SUMIFS(Q3:Q3000,L3:L3000,""&A1,U3:U3000,"<"&B1)

=SUMPRODUCT(--(L3:L300A1),--(U3:U3000<B1),Q3:Q3000)


--
Biff
Microsoft Excel MVP


"Belinda7237" wrote in message
...
I have a SUMIF formula

SUMIF(U3:U3000,"<cleared",Q3:Q3000)

that sums a value stored in column Q items that do not have a status of
cleared (status is located in column U)

I want to add a second criteria to only sumif the above is true and i have
column L that has the number of days the invoice is past due - i only want
to
include in the subtotal items that are 30 days or greater

Is this a sum product function and how would i write that?




  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,480
Default SUM Product formula help needed

hi Belinda
Try
SUMPRODUCT((U3:U3000,"<cleared")*(L3:L3000=30)*Q 3:Q3000)


--
Regards
Roger Govier

"Belinda7237" wrote in message
...
I have a SUMIF formula

SUMIF(U3:U3000,"<cleared",Q3:Q3000)

that sums a value stored in column Q items that do not have a status of
cleared (status is located in column U)

I want to add a second criteria to only sumif the above is true and i have
column L that has the number of days the invoice is past due - i only want
to
include in the subtotal items that are 30 days or greater

Is this a sum product function and how would i write that?


  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default SUM Product formula help needed

Ooops! 2 typos and I missed this:

30 days or greater


So, everywhere I have 30 just change to =30

L3:L300 in 2 places should be L3:L3000

I wonder if it's gonna be one of those days!


--
Biff
Microsoft Excel MVP


"T. Valko" wrote in message
...
Is this a sum product function and how would i write that?


SUMPRODUCT will do this but if you're using Excel 2007 then the SUMIFS
function would be a better choice.

=SUMIFS(Q3:Q3000,L3:L3000,"30",U3:U3000,"<cleare d")

SUMPRODUCT will work in any version from 97-2007

=SUMPRODUCT(--(L3:L30030),--(U3:U3000<"cleared"),Q3:Q3000)

Better to use cells to hold the criteria:

A1 = 30
B1 = cleared

=SUMIFS(Q3:Q3000,L3:L3000,""&A1,U3:U3000,"<"&B1)

=SUMPRODUCT(--(L3:L300A1),--(U3:U3000<B1),Q3:Q3000)


--
Biff
Microsoft Excel MVP


"Belinda7237" wrote in message
...
I have a SUMIF formula

SUMIF(U3:U3000,"<cleared",Q3:Q3000)

that sums a value stored in column Q items that do not have a status of
cleared (status is located in column U)

I want to add a second criteria to only sumif the above is true and i
have
column L that has the number of days the invoice is past due - i only
want to
include in the subtotal items that are 30 days or greater

Is this a sum product function and how would i write that?






  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 106
Default SUM Product formula help needed

thanks to all of you - works perfectly!

"Belinda7237" wrote:

I have a SUMIF formula

SUMIF(U3:U3000,"<cleared",Q3:Q3000)

that sums a value stored in column Q items that do not have a status of
cleared (status is located in column U)

I want to add a second criteria to only sumif the above is true and i have
column L that has the number of days the invoice is past due - i only want to
include in the subtotal items that are 30 days or greater

Is this a sum product function and how would i write that?


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
Sum product the right formula? Louisville Cardinals Excel Discussion (Misc queries) 4 January 4th 06 04:44 PM
How do add text after the product within a formula? traybuddy Excel Discussion (Misc queries) 4 October 13th 05 06:06 PM
Product formula help Elbowhite Excel Worksheet Functions 2 August 23rd 05 11:55 PM
Sum product help needed with an extra variable please and thankyou Anthony Excel Worksheet Functions 6 July 12th 05 04:31 PM
Sum Product Help Needed Edgar Thoemmes Excel Worksheet Functions 1 January 4th 05 04:57 PM


All times are GMT +1. The time now is 03:28 PM.

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

About Us

"It's about Microsoft Excel"