#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default Working Day Formula

Hi

I am after a formula to clauclate working days?

For example if the date which i have in cell B2: what code/formula would I
use to determine one working day from that date for cell C2?

Hope that makes sense, basically I want to clauclate 1 working day from the
date entered in a cell.

Mnay thanks
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default Working Day Formula

Hi,

try this formatted as date

=WORKDAY(B2,1)
--
Mike

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


"housinglad" wrote:

Hi

I am after a formula to clauclate working days?

For example if the date which i have in cell B2: what code/formula would I
use to determine one working day from that date for cell C2?

Hope that makes sense, basically I want to clauclate 1 working day from the
date entered in a cell.

Mnay thanks

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default Working Day Formula

That is very good thanks, however the code messes up if there if no value in
B2, is there q piece of code so that if there is a date then add one workday
if the cell is blank then do nothing?

Hope that makes sense.

Is the workday formula incoperated within MS EXCEL 2003??

"Mike H" wrote:

Hi,

try this formatted as date

=WORKDAY(B2,1)
--
Mike

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


"housinglad" wrote:

Hi

I am after a formula to clauclate working days?

For example if the date which i have in cell B2: what code/formula would I
use to determine one working day from that date for cell C2?

Hope that makes sense, basically I want to clauclate 1 working day from the
date entered in a cell.

Mnay thanks

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Working Day Formula

There is a "WORKDAY" function that will allow you to accomplish this task.
In Excel 2003 you need to make sure the Analysis Tool Pak is installed in
order for this to work.

"housinglad" wrote:

Hi

I am after a formula to clauclate working days?

For example if the date which i have in cell B2: what code/formula would I
use to determine one working day from that date for cell C2?

Hope that makes sense, basically I want to clauclate 1 working day from the
date entered in a cell.

Mnay thanks

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 52
Default Working Day Formula

=IF(B2="","",WORKDAY(B2,1))
Russell Dawson
Excel student


"housinglad" wrote:

Hi

I am after a formula to clauclate working days?

For example if the date which i have in cell B2: what code/formula would I
use to determine one working day from that date for cell C2?

Hope that makes sense, basically I want to clauclate 1 working day from the
date entered in a cell.

Mnay thanks



  #6   Report Post  
Posted to microsoft.public.excel.misc
PJ PJ is offline
external usenet poster
 
Posts: 112
Default Working Day Formula

This works for me in excel2003;

=IF(B2="","",WORKDAY(B2,1))

"housinglad" wrote:

That is very good thanks, however the code messes up if there if no value in
B2, is there q piece of code so that if there is a date then add one workday
if the cell is blank then do nothing?

Hope that makes sense.

Is the workday formula incoperated within MS EXCEL 2003??

"Mike H" wrote:

Hi,

try this formatted as date

=WORKDAY(B2,1)
--
Mike

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


"housinglad" wrote:

Hi

I am after a formula to clauclate working days?

For example if the date which i have in cell B2: what code/formula would I
use to determine one working day from that date for cell C2?

Hope that makes sense, basically I want to clauclate 1 working day from the
date entered in a cell.

Mnay thanks

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default Working Day Formula

Hi his fomula works fine in excel 2007 however does not work in 2003, i need
the code for excel 2003.

Please help

"Russell Dawson" wrote:

=IF(B2="","",WORKDAY(B2,1))
Russell Dawson
Excel student


"housinglad" wrote:

Hi

I am after a formula to clauclate working days?

For example if the date which i have in cell B2: what code/formula would I
use to determine one working day from that date for cell C2?

Hope that makes sense, basically I want to clauclate 1 working day from the
date entered in a cell.

Mnay thanks

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 19
Default Working Day Formula


.... ANYONE??
"housinglad" wrote:

Hi his fomula works fine in excel 2007 however does not work in 2003, i need
the code for excel 2003.

Please help

"Russell Dawson" wrote:

=IF(B2="","",WORKDAY(B2,1))
Russell Dawson
Excel student


"housinglad" wrote:

Hi

I am after a formula to clauclate working days?

For example if the date which i have in cell B2: what code/formula would I
use to determine one working day from that date for cell C2?

Hope that makes sense, basically I want to clauclate 1 working day from the
date entered in a cell.

Mnay thanks

  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Working Day Formula

Read excel's help for =workday() and you'll see that xl2003 and before have to
have the analysis toolpak addin loaded.

Help describes how to do this, too.

housinglad wrote:

... ANYONE??
"housinglad" wrote:

Hi his fomula works fine in excel 2007 however does not work in 2003, i need
the code for excel 2003.

Please help

"Russell Dawson" wrote:

=IF(B2="","",WORKDAY(B2,1))
Russell Dawson
Excel student


"housinglad" wrote:

Hi

I am after a formula to clauclate working days?

For example if the date which i have in cell B2: what code/formula would I
use to determine one working day from that date for cell C2?

Hope that makes sense, basically I want to clauclate 1 working day from the
date entered in a cell.

Mnay thanks


--

Dave Peterson
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
A formula not working as the result of a previous formula? Ed[_7_] Excel Discussion (Misc queries) 5 July 21st 09 06:22 PM
formula not working SNIsRetired Excel Discussion (Misc queries) 4 November 8th 08 12:38 PM
IF Formula Not Working novice Excel Worksheet Functions 4 July 31st 08 11:54 PM
Formula Not working SD Excel Discussion (Misc queries) 1 May 20th 08 05:27 PM
formula not working Mac Excel Worksheet Functions 3 March 8th 08 02:04 PM


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