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 Sumproduct using wildcard for month only

I am working on an excel spreadsheet to put together a report by using values
on our master worksheet.

The following information is what I am trying to use:

Column AI - contains date values in MM/DD/YY format.
Column Z - contains a status (Complete, Installed etc are potential values)
Column L - contains the numerical value of the units I want to sum.

I want to know What the total number of units that are Installed in
September 09 is....

here is what I am trying, but its not working!

=SUMPRODUCT(--(MONTH('Transit and PINPAD Listing'!F4:F1047)=9), --('Transit
and PINPAD Listing'!Z4:Z1047="Installed"), --('Transit and PINPAD
Listing'!L4:L1047))


I need to have the blanks ignored.....

HELP!

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,696
Default Sumproduct using wildcard for month only

=SUMPRODUCT(--('Transit and PINPAD
Listing'!F4:F1047)=DATE(2009,9,1),--('Transit and PINPAD
Listing'!F4:F1047)<=DATE(2009,9,30), --('Transit
and PINPAD Listing'!Z4:Z1047="Installed"), --('Transit and PINPAD
Listing'!L4:L1047))

"Princess V" wrote:

I am working on an excel spreadsheet to put together a report by using values
on our master worksheet.

The following information is what I am trying to use:

Column AI - contains date values in MM/DD/YY format.
Column Z - contains a status (Complete, Installed etc are potential values)
Column L - contains the numerical value of the units I want to sum.

I want to know What the total number of units that are Installed in
September 09 is....

here is what I am trying, but its not working!

=SUMPRODUCT(--(MONTH('Transit and PINPAD Listing'!F4:F1047)=9), --('Transit
and PINPAD Listing'!Z4:Z1047="Installed"), --('Transit and PINPAD
Listing'!L4:L1047))


I need to have the blanks ignored.....

HELP!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Sumproduct using wildcard for month only

What exactly isn't working?

I need to have the blanks ignored.....


The only time empty cells would be included is when you test for month 1
(Jan).

You can either include another array that tests for the year:

--(YEAR('Transit and PINPAD Listing'!F4:F1047)=2009)

Or, you can test for both month and year at the same time like this:

--(TEXT('Transit and PINPAD Listing'!F4:F1047,"m/yyyy")="1/2009")

What do think about this idea?

'Transit and PINPAD Listing' = T&PList

--
Biff
Microsoft Excel MVP


"Princess V" <Princess wrote in message
...
I am working on an excel spreadsheet to put together a report by using
values
on our master worksheet.

The following information is what I am trying to use:

Column AI - contains date values in MM/DD/YY format.
Column Z - contains a status (Complete, Installed etc are potential
values)
Column L - contains the numerical value of the units I want to sum.

I want to know What the total number of units that are Installed in
September 09 is....

here is what I am trying, but its not working!

=SUMPRODUCT(--(MONTH('Transit and PINPAD
Listing'!F4:F1047)=9), --('Transit
and PINPAD Listing'!Z4:Z1047="Installed"), --('Transit and PINPAD
Listing'!L4:L1047))


I need to have the blanks ignored.....

HELP!



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Sumproduct using wildcard for month only

Thanks Sean....I see what you are doing here...
I even found an error on my part...my date is listed in Column AI, not
F....so I changed my formula to the following:

=SUMPRODUCT(--('Transit and PINPAD
Listing'!AI4:AI1047)=DATE(2009,9,1),--('Transit and PINPAD
Listing'!AI4:AI1047)<=DATE(2009,9,30),--('Transit and PINPAD
Listing'!Z4:Z1047="Installed"),--('Transit and PINPAD Listing'!L4:L1047))

However, this yields a value of 0....I know that this is not the case....

What else can i check....






"Sean Timmons" wrote:

=SUMPRODUCT(--('Transit and PINPAD
Listing'!F4:F1047)=DATE(2009,9,1),--('Transit and PINPAD
Listing'!F4:F1047)<=DATE(2009,9,30), --('Transit
and PINPAD Listing'!Z4:Z1047="Installed"), --('Transit and PINPAD
Listing'!L4:L1047))

"Princess V" wrote:

I am working on an excel spreadsheet to put together a report by using values
on our master worksheet.

The following information is what I am trying to use:

Column AI - contains date values in MM/DD/YY format.
Column Z - contains a status (Complete, Installed etc are potential values)
Column L - contains the numerical value of the units I want to sum.

I want to know What the total number of units that are Installed in
September 09 is....

here is what I am trying, but its not working!

=SUMPRODUCT(--(MONTH('Transit and PINPAD Listing'!F4:F1047)=9), --('Transit
and PINPAD Listing'!Z4:Z1047="Installed"), --('Transit and PINPAD
Listing'!L4:L1047))


I need to have the blanks ignored.....

HELP!

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8
Default Sumproduct using wildcard for month only


This worked!!! Excellent!!!!!!!

Thank you so much!



"T. Valko" wrote:

What exactly isn't working?

I need to have the blanks ignored.....


The only time empty cells would be included is when you test for month 1
(Jan).

You can either include another array that tests for the year:

--(YEAR('Transit and PINPAD Listing'!F4:F1047)=2009)

Or, you can test for both month and year at the same time like this:

--(TEXT('Transit and PINPAD Listing'!F4:F1047,"m/yyyy")="1/2009")

What do think about this idea?

'Transit and PINPAD Listing' = T&PList

--
Biff
Microsoft Excel MVP


"Princess V" <Princess wrote in message
...
I am working on an excel spreadsheet to put together a report by using
values
on our master worksheet.

The following information is what I am trying to use:

Column AI - contains date values in MM/DD/YY format.
Column Z - contains a status (Complete, Installed etc are potential
values)
Column L - contains the numerical value of the units I want to sum.

I want to know What the total number of units that are Installed in
September 09 is....

here is what I am trying, but its not working!

=SUMPRODUCT(--(MONTH('Transit and PINPAD
Listing'!F4:F1047)=9), --('Transit
and PINPAD Listing'!Z4:Z1047="Installed"), --('Transit and PINPAD
Listing'!L4:L1047))


I need to have the blanks ignored.....

HELP!






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Sumproduct using wildcard for month only

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"Princess V" wrote in message
...

This worked!!! Excellent!!!!!!!

Thank you so much!



"T. Valko" wrote:

What exactly isn't working?

I need to have the blanks ignored.....


The only time empty cells would be included is when you test for month 1
(Jan).

You can either include another array that tests for the year:

--(YEAR('Transit and PINPAD Listing'!F4:F1047)=2009)

Or, you can test for both month and year at the same time like this:

--(TEXT('Transit and PINPAD Listing'!F4:F1047,"m/yyyy")="1/2009")

What do think about this idea?

'Transit and PINPAD Listing' = T&PList

--
Biff
Microsoft Excel MVP


"Princess V" <Princess wrote in message
...
I am working on an excel spreadsheet to put together a report by using
values
on our master worksheet.

The following information is what I am trying to use:

Column AI - contains date values in MM/DD/YY format.
Column Z - contains a status (Complete, Installed etc are potential
values)
Column L - contains the numerical value of the units I want to sum.

I want to know What the total number of units that are Installed in
September 09 is....

here is what I am trying, but its not working!

=SUMPRODUCT(--(MONTH('Transit and PINPAD
Listing'!F4:F1047)=9), --('Transit
and PINPAD Listing'!Z4:Z1047="Installed"), --('Transit and PINPAD
Listing'!L4:L1047))


I need to have the blanks ignored.....

HELP!






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,346
Default Sumproduct using wildcard for month only

Hi,

If all of your dates are in the same year you could use:

=SUMPRODUCT(--(S=A1),--(MONTH(D)=9),V)

By using range names instead of cell references you avoid the complexity of
sheet references. In this example I entered the status (Installed) in cell
A1. And range named the date D, the status S and the values V.

If the dates can be in multiple years then

=SUMPRODUCT(--(S=A23),--(TEXT(D,"m/yy")="9/09"),V)

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Princess V" wrote:

Thanks Sean....I see what you are doing here...
I even found an error on my part...my date is listed in Column AI, not
F....so I changed my formula to the following:

=SUMPRODUCT(--('Transit and PINPAD
Listing'!AI4:AI1047)=DATE(2009,9,1),--('Transit and PINPAD
Listing'!AI4:AI1047)<=DATE(2009,9,30),--('Transit and PINPAD
Listing'!Z4:Z1047="Installed"),--('Transit and PINPAD Listing'!L4:L1047))

However, this yields a value of 0....I know that this is not the case....

What else can i check....






"Sean Timmons" wrote:

=SUMPRODUCT(--('Transit and PINPAD
Listing'!F4:F1047)=DATE(2009,9,1),--('Transit and PINPAD
Listing'!F4:F1047)<=DATE(2009,9,30), --('Transit
and PINPAD Listing'!Z4:Z1047="Installed"), --('Transit and PINPAD
Listing'!L4:L1047))

"Princess V" wrote:

I am working on an excel spreadsheet to put together a report by using values
on our master worksheet.

The following information is what I am trying to use:

Column AI - contains date values in MM/DD/YY format.
Column Z - contains a status (Complete, Installed etc are potential values)
Column L - contains the numerical value of the units I want to sum.

I want to know What the total number of units that are Installed in
September 09 is....

here is what I am trying, but its not working!

=SUMPRODUCT(--(MONTH('Transit and PINPAD Listing'!F4:F1047)=9), --('Transit
and PINPAD Listing'!Z4:Z1047="Installed"), --('Transit and PINPAD
Listing'!L4:L1047))


I need to have the blanks ignored.....

HELP!

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
Wildcard in SumProduct Judy L Excel Worksheet Functions 3 April 11th 08 01:16 PM
Sumproduct and wildcard kd Excel Worksheet Functions 3 March 29th 07 03:04 PM
SUMPRODUCT with Wildcard JerryS Excel Worksheet Functions 7 June 18th 05 01:45 PM
Sumproduct Wildcard RB Excel Discussion (Misc queries) 6 May 17th 05 04:27 AM
Sumproduct with Wildcard * Jim Excel Worksheet Functions 5 April 5th 05 05:56 PM


All times are GMT +1. The time now is 08:11 AM.

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"