Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default sumproduct & Dates & similar Data

Please help!
I am currently working on a workbook that has various part nmbers
(2060207-WPI001) on work sheet 7-14-07 in E:E in which I match a 1 to
3 letter designations as in "WPI". In column AI:AI is the dates which
these pieces are scheduled to cast. I need to place a date in cell H3
of sheet 1 as 8/30/07 and sum the total occurences which are less
than
or equal to the 8/30/07 date.

When I use the following I return the total occurences were WPI is
listed but I need the sum of those with dates less than or equal to
8/30/07 for billing purposes.


=SUMPRODUCT(--(ISNUMBER(FIND({"WPI"},'7-14-07'!$E$2:$E$65335)*(--
('7-14-07'!$AI$2:$AI$65335=DATE(2007,8,30+0))))))


Bill suggested to try this:


H3 = 8/30/2007


=SUMPRODUCT(--(ISNUMBER(FIND("WPI",'7-14-07'!E2:E65335))),--
(ISNUMBER('7-14*-07'!AI2:AI65335)),--('7-14-07'!AI2:AI65335<=H3))


This worked but


Have a couple issues with the following Descriptions in getting exact
sum due to the similarity in the descriptions:


2060207-GL101
2060207-G003
2060207-SPL058
2060207-SPLM066
2060207-W003
2060207-WI103
2060207-WIM207
2060207-WIRD100
2060207-WIRDM001
2060207-WIRT002
2060207-WIRTM003
2060207-WM204
2060207-WPE010
2060207-WPEM011
2060207-WPI013
2060207-WPK
2060207-WRD
2060207-WRDM
2060207-WRT
2060207-WRTM
This was suggested but I could not get it to work with the 7-14-07
worksheet
=SUMPRODUCT(--
(ISNUMBER(FIND({"W0","W1","W2","W3","W4","W5","W6" ,"W7","W8",*"W9"},
$E
$1:$E$65535))))
Any Assistance would be greatly Appreciated!

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default sumproduct & Dates & similar Data

See questions in your post in the excel group.
Please don't multipost.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Googley" wrote in message
ups.com...
Please help!
I am currently working on a workbook that has various part nmbers
(2060207-WPI001) on work sheet 7-14-07 in E:E in which I match a 1 to
3 letter designations as in "WPI". In column AI:AI is the dates which
these pieces are scheduled to cast. I need to place a date in cell H3
of sheet 1 as 8/30/07 and sum the total occurences which are less
than
or equal to the 8/30/07 date.

When I use the following I return the total occurences were WPI is
listed but I need the sum of those with dates less than or equal to
8/30/07 for billing purposes.


=SUMPRODUCT(--(ISNUMBER(FIND({"WPI"},'7-14-07'!$E$2:$E$65335)*(--
('7-14-07'!$AI$2:$AI$65335=DATE(2007,8,30+0))))))


Bill suggested to try this:


H3 = 8/30/2007


=SUMPRODUCT(--(ISNUMBER(FIND("WPI",'7-14-07'!E2:E65335))),--
(ISNUMBER('7-14*-07'!AI2:AI65335)),--('7-14-07'!AI2:AI65335<=H3))


This worked but


Have a couple issues with the following Descriptions in getting exact
sum due to the similarity in the descriptions:


2060207-GL101
2060207-G003
2060207-SPL058
2060207-SPLM066
2060207-W003
2060207-WI103
2060207-WIM207
2060207-WIRD100
2060207-WIRDM001
2060207-WIRT002
2060207-WIRTM003
2060207-WM204
2060207-WPE010
2060207-WPEM011
2060207-WPI013
2060207-WPK
2060207-WRD
2060207-WRDM
2060207-WRT
2060207-WRTM
This was suggested but I could not get it to work with the 7-14-07
worksheet
=SUMPRODUCT(--
(ISNUMBER(FIND({"W0","W1","W2","W3","W4","W5","W6" ,"W7","W8",*"W9"},
$E
$1:$E$65535))))
Any Assistance would be greatly Appreciated!

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default sumproduct & Dates & similar Data

On Aug 22, 8:37 pm, "Ragdyer" wrote:
See questions in your post in the excel group.
Please don't multipost.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------"Googley" wrote in message

ups.com...
Please help!
I am currently working on a workbook that has various part nmbers
(2060207-WPI001) on work sheet 7-14-07 in E:E in which I match a 1 to
3 letter designations as in "WPI". In column AI:AI is the dates which
these pieces are scheduled to cast. I need to place a date in cell H3
of sheet 1 as 8/30/07 and sum the total occurences which are less
than
or equal to the 8/30/07 date.

When I use the following I return the total occurences were WPI is
listed but I need the sum of those with dates less than or equal to
8/30/07 for billing purposes.

=SUMPRODUCT(--(ISNUMBER(FIND({"WPI"},'7-14-07'!$E$2:$E$65335)*(--
('7-14-07'!$AI$2:$AI$65335=DATE(2007,8,30+0))))))

Bill suggested to try this:

H3 = 8/30/2007

=SUMPRODUCT(--(ISNUMBER(FIND("WPI",'7-14-07'!E2:E65335))),--
(ISNUMBER('7-14*-07'!AI2:AI65335)),--('7-14-07'!AI2:AI65335<=H3))

This worked but

Have a couple issues with the following Descriptions in getting exact
sum due to the similarity in the descriptions:

2060207-GL101
2060207-G003
2060207-SPL058
2060207-SPLM066
2060207-W003
2060207-WI103
2060207-WIM207
2060207-WIRD100
2060207-WIRDM001
2060207-WIRT002
2060207-WIRTM003
2060207-WM204
2060207-WPE010
2060207-WPEM011
2060207-WPI013
2060207-WPK
2060207-WRD
2060207-WRDM
2060207-WRT
2060207-WRTM
This was suggested but I could not get it to work with the 7-14-07
worksheet
=SUMPRODUCT(--
(ISNUMBER(FIND({"W0","W1","W2","W3","W4","W5","W6" ,"W7","W8",*"W9"},
$E
$1:$E$65535))))
Any Assistance would be greatly Appreciated!


o.k. sorry

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
Help with sumproduct or similar type of function [email protected] Excel Discussion (Misc queries) 0 May 3rd 07 07:46 AM
SUMPRODUCT is OK for a while and later a similar formula returns 0 Pierian Spring Excel Worksheet Functions 4 January 18th 07 04:00 PM
Two Worksheets similar data Muddypaws Excel Discussion (Misc queries) 4 September 14th 06 02:22 PM
sumproduct with dates Bumblebee Excel Worksheet Functions 2 August 22nd 06 08:16 PM
Similar Data Bahadur Excel Discussion (Misc queries) 1 April 5th 06 03:31 PM


All times are GMT +1. The time now is 06:37 AM.

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"