#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 79
Default sumproduct tracking

I have a spred sheet tracking absenteeism using the following formula
=sumproduct(--('sheet1'!B1:B100="John Doe"),--('sheet1'!C1:C100="sick"))
each time John Doe is sick it displays on sheet 2
in column A is the dates - ------ I wish to track it Quarterly --- is it
possible to add a third criteria so it will track from (Jan. 01/09 to March
31/09) (April 01/09 to June 30/09 ) etc. I would prefer to use dates if
possible

--
grizz
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 492
Default sumproduct tracking

One way, if you put the start and end dates in say N1 and N2.

=SUMPRODUCT(--(Sheet1!B1:B100="John
Doe"),--(Sheet1!C1:C100="sick"),--(A1:A100=N1),--(A1:A100<=N2))

Regards,
Alan.
"grizzly6969" wrote in message
...
I have a spred sheet tracking absenteeism using the following formula
=sumproduct(--('sheet1'!B1:B100="John Doe"),--('sheet1'!C1:C100="sick"))
each time John Doe is sick it displays on sheet 2
in column A is the dates - ------ I wish to track it Quarterly --- is it
possible to add a third criteria so it will track from (Jan. 01/09 to
March
31/09) (April 01/09 to June 30/09 ) etc. I would prefer to use dates if
possible

--
grizz


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 225
Default sumproduct tracking

Add two conditons... one to check beginning of the period, second to check
< end of the period...

=SUMPRODUCT(--(Sheet1!B1:B100="John
Doe"),--(Sheet1!C1:C100="sick"),--(Sheet1!A1:A100=$E$1),--(Sheet1!A1:A100<=$F$1))

with E1 having the beginning and F1 the end of the period
"grizzly6969" wrote:

I have a spred sheet tracking absenteeism using the following formula
=sumproduct(--('sheet1'!B1:B100="John Doe"),--('sheet1'!C1:C100="sick"))
each time John Doe is sick it displays on sheet 2
in column A is the dates - ------ I wish to track it Quarterly --- is it
possible to add a third criteria so it will track from (Jan. 01/09 to March
31/09) (April 01/09 to June 30/09 ) etc. I would prefer to use dates if
possible

--
grizz

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 79
Default sumproduct tracking

I'm getting a ( #value! ) return am I doing somthing wrong
--
grizz


"Sheeloo" wrote:

Add two conditons... one to check beginning of the period, second to check
< end of the period...

=SUMPRODUCT(--(Sheet1!B1:B100="John
Doe"),--(Sheet1!C1:C100="sick"),--(Sheet1!A1:A100=$E$1),--(Sheet1!A1:A100<=$F$1))

with E1 having the beginning and F1 the end of the period
"grizzly6969" wrote:

I have a spred sheet tracking absenteeism using the following formula
=sumproduct(--('sheet1'!B1:B100="John Doe"),--('sheet1'!C1:C100="sick"))
each time John Doe is sick it displays on sheet 2
in column A is the dates - ------ I wish to track it Quarterly --- is it
possible to add a third criteria so it will track from (Jan. 01/09 to March
31/09) (April 01/09 to June 30/09 ) etc. I would prefer to use dates if
possible

--
grizz

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 225
Default sumproduct tracking

Download the file I tested with from
http://wikisend.com/download/440880/Sample.xls
and compare with what you are doing...

or upload your file to wikisend and paste a link here...

"grizzly6969" wrote:

I'm getting a ( #value! ) return am I doing somthing wrong
--
grizz


"Sheeloo" wrote:

Add two conditons... one to check beginning of the period, second to check
< end of the period...

=SUMPRODUCT(--(Sheet1!B1:B100="John
Doe"),--(Sheet1!C1:C100="sick"),--(Sheet1!A1:A100=$E$1),--(Sheet1!A1:A100<=$F$1))

with E1 having the beginning and F1 the end of the period
"grizzly6969" wrote:

I have a spred sheet tracking absenteeism using the following formula
=sumproduct(--('sheet1'!B1:B100="John Doe"),--('sheet1'!C1:C100="sick"))
each time John Doe is sick it displays on sheet 2
in column A is the dates - ------ I wish to track it Quarterly --- is it
possible to add a third criteria so it will track from (Jan. 01/09 to March
31/09) (April 01/09 to June 30/09 ) etc. I would prefer to use dates if
possible

--
grizz



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 79
Default sumproduct tracking

Thanks for the help
--
grizz


"Sheeloo" wrote:

Download the file I tested with from
http://wikisend.com/download/440880/Sample.xls
and compare with what you are doing...

or upload your file to wikisend and paste a link here...

"grizzly6969" wrote:

I'm getting a ( #value! ) return am I doing somthing wrong
--
grizz


"Sheeloo" wrote:

Add two conditons... one to check beginning of the period, second to check
< end of the period...

=SUMPRODUCT(--(Sheet1!B1:B100="John
Doe"),--(Sheet1!C1:C100="sick"),--(Sheet1!A1:A100=$E$1),--(Sheet1!A1:A100<=$F$1))

with E1 having the beginning and F1 the end of the period
"grizzly6969" wrote:

I have a spred sheet tracking absenteeism using the following formula
=sumproduct(--('sheet1'!B1:B100="John Doe"),--('sheet1'!C1:C100="sick"))
each time John Doe is sick it displays on sheet 2
in column A is the dates - ------ I wish to track it Quarterly --- is it
possible to add a third criteria so it will track from (Jan. 01/09 to March
31/09) (April 01/09 to June 30/09 ) etc. I would prefer to use dates if
possible

--
grizz

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 492
Default sumproduct tracking

You must be, both Sheeoo's solution and mine work. Try posting the formula
you're using and the cells you've entered the start and end dates in, it
should be easily resolved.

"grizzly6969" wrote in message
...
I'm getting a ( #value! ) return am I doing somthing wrong
--
grizz


"Sheeloo" wrote:

Add two conditons... one to check beginning of the period, second to
check
< end of the period...

=SUMPRODUCT(--(Sheet1!B1:B100="John
Doe"),--(Sheet1!C1:C100="sick"),--(Sheet1!A1:A100=$E$1),--(Sheet1!A1:A100<=$F$1))

with E1 having the beginning and F1 the end of the period
"grizzly6969" wrote:

I have a spred sheet tracking absenteeism using the following formula
=sumproduct(--('sheet1'!B1:B100="John
Doe"),--('sheet1'!C1:C100="sick"))
each time John Doe is sick it displays on sheet 2
in column A is the dates - ------ I wish to track it Quarterly --- is
it
possible to add a third criteria so it will track from (Jan. 01/09 to
March
31/09) (April 01/09 to June 30/09 ) etc. I would prefer to use dates
if
possible

--
grizz


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
sumproduct function, Bob P please see tracking sheet help Dale G[_2_] New Users to Excel 9 July 30th 08 05:08 PM
Tracking GPA [email protected] Excel Discussion (Misc queries) 6 April 15th 08 06:34 PM
Tracking Changes Mimi Excel Worksheet Functions 6 December 15th 06 06:04 PM
How to insert tracking numbers into my webpage for RMA tracking wiglady Excel Discussion (Misc queries) 0 April 4th 06 12:44 PM
tracking changes Hillie Excel Worksheet Functions 2 December 28th 04 02:22 PM


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