Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 47
Default workdays question/help

I am trying to make a template for our staff that will easily calculate 50
school days from a given date. This is a state compliance issue for special
education, I
need to be able to have the secretaries calculate this date for student
evals.

I have formatted the sheet for dates. In A1 I type in the date I want to
figure 50 days from, in column B I have typed in ALL school days off.

In A2 I use the formula =WORKDAY(TODAY(),50,B:B and will get the same date
no matter what date I enter into A1, ie if I enter in 1/1/2010, the return
date for 50 days will be 4/26/2010, if I type in 2/12/2010 I get 4/26/2010.
Obviously I am doing something wrong.....

The ultimate goal is a template for all surrounding districts that the
secretaries can easily use to calculate the 50 days - any help showing me
what I am doing wrong will be greatly appreciated.

Thanks!

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default workdays question/help

Ki,

I'm a bit confused by this question

1/1/2010 + 50 workdays (Excluding any holidays) is 12 March 2010

so with your date in a1 this formula formatted as a date

=WORKDAY(A1,50,B:B)

Returns the date + 50 days taking account of holidays in column B

I would suggest you shorten the range B:B to something realistic
=WORKDAY(A1,50,$B$1:$B$50)
This would allow 50 holidays which in the UK is more than enough
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"Kim K" wrote:

I am trying to make a template for our staff that will easily calculate 50
school days from a given date. This is a state compliance issue for special
education, I
need to be able to have the secretaries calculate this date for student
evals.

I have formatted the sheet for dates. In A1 I type in the date I want to
figure 50 days from, in column B I have typed in ALL school days off.

In A2 I use the formula =WORKDAY(TODAY(),50,B:B and will get the same date
no matter what date I enter into A1, ie if I enter in 1/1/2010, the return
date for 50 days will be 4/26/2010, if I type in 2/12/2010 I get 4/26/2010.
Obviously I am doing something wrong.....

The ultimate goal is a template for all surrounding districts that the
secretaries can easily use to calculate the 50 days - any help showing me
what I am doing wrong will be greatly appreciated.

Thanks!

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default workdays question/help

Two problems:

1. You can't use a full column for holidays in Workday. Give it the specific
range.
2. Your formula is calculating 50 days from *today*, not the date in A1.


Try:
=workday(a1,50,b1:b20)

Regards,
Fred

"Kim K" wrote in message
...
I am trying to make a template for our staff that will easily calculate 50
school days from a given date. This is a state compliance issue for
special
education, I
need to be able to have the secretaries calculate this date for student
evals.

I have formatted the sheet for dates. In A1 I type in the date I want to
figure 50 days from, in column B I have typed in ALL school days off.

In A2 I use the formula =WORKDAY(TODAY(),50,B:B and will get the same date
no matter what date I enter into A1, ie if I enter in 1/1/2010, the return
date for 50 days will be 4/26/2010, if I type in 2/12/2010 I get
4/26/2010.
Obviously I am doing something wrong.....

The ultimate goal is a template for all surrounding districts that the
secretaries can easily use to calculate the 50 days - any help showing me
what I am doing wrong will be greatly appreciated.

Thanks!


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default workdays question/help

In A2 I use the formula =WORKDAY(TODAY(),50,B:B
and will get the same date no matter what date
I enter into A1, ie if I enter in 1/1/2010, the return
date for 50 days will be 4/26/2010, if I type in
2/12/2010 I get 4/26/2010. Obviously I am doing
something wrong.....


Shouldn't you be referring to cell A1 rather than TODAY()? Also, you can't
reference an entire column for the Holidays argument.

=WORKDAY(A1,50,B1:B10)

--
Biff
Microsoft Excel MVP


"Kim K" wrote in message
...
I am trying to make a template for our staff that will easily calculate 50
school days from a given date. This is a state compliance issue for
special
education, I
need to be able to have the secretaries calculate this date for student
evals.

I have formatted the sheet for dates. In A1 I type in the date I want to
figure 50 days from, in column B I have typed in ALL school days off.

In A2 I use the formula =WORKDAY(TODAY(),50,B:B and will get the same date
no matter what date I enter into A1, ie if I enter in 1/1/2010, the return
date for 50 days will be 4/26/2010, if I type in 2/12/2010 I get
4/26/2010.
Obviously I am doing something wrong.....

The ultimate goal is a template for all surrounding districts that the
secretaries can easily use to calculate the 50 days - any help showing me
what I am doing wrong will be greatly appreciated.

Thanks!



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 47
Default workdays question/help

Hi Mike,

Yes this works now and thank you! The other posted formula was provided by
another user, so must have been some minunderstanding on my part in my
explaination.

Thanks everyone!

"Mike H" wrote:

Ki,

I'm a bit confused by this question

1/1/2010 + 50 workdays (Excluding any holidays) is 12 March 2010

so with your date in a1 this formula formatted as a date

=WORKDAY(A1,50,B:B)

Returns the date + 50 days taking account of holidays in column B

I would suggest you shorten the range B:B to something realistic
=WORKDAY(A1,50,$B$1:$B$50)
This would allow 50 holidays which in the UK is more than enough
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"Kim K" wrote:

I am trying to make a template for our staff that will easily calculate 50
school days from a given date. This is a state compliance issue for special
education, I
need to be able to have the secretaries calculate this date for student
evals.

I have formatted the sheet for dates. In A1 I type in the date I want to
figure 50 days from, in column B I have typed in ALL school days off.

In A2 I use the formula =WORKDAY(TODAY(),50,B:B and will get the same date
no matter what date I enter into A1, ie if I enter in 1/1/2010, the return
date for 50 days will be 4/26/2010, if I type in 2/12/2010 I get 4/26/2010.
Obviously I am doing something wrong.....

The ultimate goal is a template for all surrounding districts that the
secretaries can easily use to calculate the 50 days - any help showing me
what I am doing wrong will be greatly appreciated.

Thanks!



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default workdays question/help

Glad you got it working finally.

Regards,
Fred

"Kim K" wrote in message
...
Hi Mike,

Yes this works now and thank you! The other posted formula was provided
by
another user, so must have been some minunderstanding on my part in my
explaination.

Thanks everyone!

"Mike H" wrote:

Ki,

I'm a bit confused by this question

1/1/2010 + 50 workdays (Excluding any holidays) is 12 March 2010

so with your date in a1 this formula formatted as a date

=WORKDAY(A1,50,B:B)

Returns the date + 50 days taking account of holidays in column B

I would suggest you shorten the range B:B to something realistic
=WORKDAY(A1,50,$B$1:$B$50)
This would allow 50 holidays which in the UK is more than enough
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"Kim K" wrote:

I am trying to make a template for our staff that will easily calculate
50
school days from a given date. This is a state compliance issue for
special
education, I
need to be able to have the secretaries calculate this date for student
evals.

I have formatted the sheet for dates. In A1 I type in the date I want
to
figure 50 days from, in column B I have typed in ALL school days off.

In A2 I use the formula =WORKDAY(TODAY(),50,B:B and will get the same
date
no matter what date I enter into A1, ie if I enter in 1/1/2010, the
return
date for 50 days will be 4/26/2010, if I type in 2/12/2010 I get
4/26/2010.
Obviously I am doing something wrong.....

The ultimate goal is a template for all surrounding districts that the
secretaries can easily use to calculate the 50 days - any help showing
me
what I am doing wrong will be greatly appreciated.

Thanks!


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 Workdays Frank Excel Worksheet Functions 3 January 25th 10 01:00 PM
Workdays collshops Excel Worksheet Functions 2 February 3rd 09 09:09 PM
Net Workdays Katie Excel Discussion (Misc queries) 4 September 19th 08 10:59 PM
Workdays Andrew Excel Worksheet Functions 3 September 9th 08 03:48 PM
Workdays Alpur Excel Discussion (Misc queries) 3 November 3rd 05 04:00 PM


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