Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default can I have excel count occurrences for 10 people in 7 days

I am setting up a physician call schedule.10 people 7days/week. Can I have
excel count how many times each doc has taken call on each day .
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default can I have excel count occurrences for 10 people in 7 days

Need more detail

Biff

"grebnet" wrote in message
...
I am setting up a physician call schedule.10 people 7days/week. Can I have
excel count how many times each doc has taken call on each day .



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default can I have excel count occurrences for 10 people in 7 days

For each day of the month I will put one of 10 different docs on call. It is
important that the number of total calls and number of calls taken for each
day ( ie Mondays,tuesdays.....) are equal . Especially dont want one Doc
doing more weekends than another. So I would like to have a function that
will count How many Mondays Doc X does, how many Tuesdays...... Then total
each up for each month and keep a running total for the year. ( in this
case the year will start April 1st )

Thanks

"T. Valko" wrote:

Need more detail

Biff

"grebnet" wrote in message
...
I am setting up a physician call schedule.10 people 7days/week. Can I have
excel count how many times each doc has taken call on each day .




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default can I have excel count occurrences for 10 people in 7 days

Ok, how about describing your layout.

I assume you have Doc names as one axis and the dates as another axis. Are
the dates real dates like 4/1/2007 or are they the days of the week as TEXT
entries like MONDAY? How do you denote if Doc X has taken a call?

Biff

"grebnet" wrote in message
...
For each day of the month I will put one of 10 different docs on call. It
is
important that the number of total calls and number of calls taken for
each
day ( ie Mondays,tuesdays.....) are equal . Especially dont want one Doc
doing more weekends than another. So I would like to have a function that
will count How many Mondays Doc X does, how many Tuesdays...... Then
total
each up for each month and keep a running total for the year. ( in this
case the year will start April 1st )

Thanks

"T. Valko" wrote:

Need more detail

Biff

"grebnet" wrote in message
...
I am setting up a physician call schedule.10 people 7days/week. Can I
have
excel count how many times each doc has taken call on each day .






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default can I have excel count occurrences for 10 people in 7 days

One column is actual date, next column is day of week, next column is a two
letter code unique to each doc .( ie TR )

"T. Valko" wrote:

Ok, how about describing your layout.

I assume you have Doc names as one axis and the dates as another axis. Are
the dates real dates like 4/1/2007 or are they the days of the week as TEXT
entries like MONDAY? How do you denote if Doc X has taken a call?

Biff

"grebnet" wrote in message
...
For each day of the month I will put one of 10 different docs on call. It
is
important that the number of total calls and number of calls taken for
each
day ( ie Mondays,tuesdays.....) are equal . Especially dont want one Doc
doing more weekends than another. So I would like to have a function that
will count How many Mondays Doc X does, how many Tuesdays...... Then
total
each up for each month and keep a running total for the year. ( in this
case the year will start April 1st )

Thanks

"T. Valko" wrote:

Need more detail

Biff

"grebnet" wrote in message
...
I am setting up a physician call schedule.10 people 7days/week. Can I
have
excel count how many times each doc has taken call on each day .








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default can I have excel count occurrences for 10 people in 7 days

Ok...

Assume A2:A31 = dates for April: 4/1/2007 to 4/30/2007
B2:B31 = various 2 letter codes (initials?)

To count the number of Mondays for "TR":

=SUMPRODUCT(--(WEEKDAY(A2:A31,2)=1),--(B2:B31="TR"))

You can get the other days of the week by changing the 1. 1 = Monday thru 7
= Sunday

Biff

"grebnet" wrote in message
...
One column is actual date, next column is day of week, next column is a
two
letter code unique to each doc .( ie TR )

"T. Valko" wrote:

Ok, how about describing your layout.

I assume you have Doc names as one axis and the dates as another axis.
Are
the dates real dates like 4/1/2007 or are they the days of the week as
TEXT
entries like MONDAY? How do you denote if Doc X has taken a call?

Biff

"grebnet" wrote in message
...
For each day of the month I will put one of 10 different docs on call.
It
is
important that the number of total calls and number of calls taken for
each
day ( ie Mondays,tuesdays.....) are equal . Especially dont want one
Doc
doing more weekends than another. So I would like to have a function
that
will count How many Mondays Doc X does, how many Tuesdays...... Then
total
each up for each month and keep a running total for the year. ( in
this
case the year will start April 1st )

Thanks

"T. Valko" wrote:

Need more detail

Biff

"grebnet" wrote in message
...
I am setting up a physician call schedule.10 people 7days/week. Can
I
have
excel count how many times each doc has taken call on each day .








  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default can I have excel count occurrences for 10 people in 7 days

Thanks...Ill give it a try

"T. Valko" wrote:

Ok...

Assume A2:A31 = dates for April: 4/1/2007 to 4/30/2007
B2:B31 = various 2 letter codes (initials?)

To count the number of Mondays for "TR":

=SUMPRODUCT(--(WEEKDAY(A2:A31,2)=1),--(B2:B31="TR"))

You can get the other days of the week by changing the 1. 1 = Monday thru 7
= Sunday

Biff

"grebnet" wrote in message
...
One column is actual date, next column is day of week, next column is a
two
letter code unique to each doc .( ie TR )

"T. Valko" wrote:

Ok, how about describing your layout.

I assume you have Doc names as one axis and the dates as another axis.
Are
the dates real dates like 4/1/2007 or are they the days of the week as
TEXT
entries like MONDAY? How do you denote if Doc X has taken a call?

Biff

"grebnet" wrote in message
...
For each day of the month I will put one of 10 different docs on call.
It
is
important that the number of total calls and number of calls taken for
each
day ( ie Mondays,tuesdays.....) are equal . Especially dont want one
Doc
doing more weekends than another. So I would like to have a function
that
will count How many Mondays Doc X does, how many Tuesdays...... Then
total
each up for each month and keep a running total for the year. ( in
this
case the year will start April 1st )

Thanks

"T. Valko" wrote:

Need more detail

Biff

"grebnet" wrote in message
...
I am setting up a physician call schedule.10 people 7days/week. Can
I
have
excel count how many times each doc has taken call on each day .









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
how do I count occurrences of multiple conditions Debi Excel Worksheet Functions 1 October 5th 06 05:11 PM
trying to COUNT occurrences when certain criteria is met Allan from Melbourne Excel Discussion (Misc queries) 4 August 2nd 06 11:01 AM
Count number of occurrences MarkM Excel Discussion (Misc queries) 1 July 27th 06 10:14 PM
Count occurrences of values in a column??!! me123 Excel Worksheet Functions 5 May 10th 06 08:24 PM
Count unique occurrences of name jhicsupt Excel Discussion (Misc queries) 4 October 5th 05 05:46 PM


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