Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 29
Default Working Days without the Analysis Pack

Hi,

I'm trying to calculate what 13 working days are from a set date (cell a1),
however i understand that the formulae for this the 'WorkDays' one needs the
Analysis tool pack to function. This is the stumbling block as our
organisation are not able/permitted to install this on the server.

Does any one know another route i can take????

Thanks in advance
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default Working Days without the Analysis Pack

Hi sdg8481

See
http://www.dicks-blog.com/archives/2...-addin-part-2/


--
Regards Ron de Bruin
http://www.rondebruin.nl



"sdg8481" wrote in message ...
Hi,

I'm trying to calculate what 13 working days are from a set date (cell a1),
however i understand that the formulae for this the 'WorkDays' one needs the
Analysis tool pack to function. This is the stumbling block as our
organisation are not able/permitted to install this on the server.

Does any one know another route i can take????

Thanks in advance



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 695
Default Working Days without the Analysis Pack

i dont think this funktion is depend of analysis too... but not sure

=IF(OR(TEXT(C2,"dddd")="sunday",TEXT(C2;"dddd")="s aturday"),"Weekend";"Workday")



"Ron de Bruin" skrev:

Hi sdg8481

See
http://www.dicks-blog.com/archives/2...-addin-part-2/


--
Regards Ron de Bruin
http://www.rondebruin.nl



"sdg8481" wrote in message ...
Hi,

I'm trying to calculate what 13 working days are from a set date (cell a1),
however i understand that the formulae for this the 'WorkDays' one needs the
Analysis tool pack to function. This is the stumbling block as our
organisation are not able/permitted to install this on the server.

Does any one know another route i can take????

Thanks in advance




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 29
Default Working Days without the Analysis Pack

Hi, Thanks for you quick response. However i'm having a bit of trouble
understanding the code, please could you help by the way of the following
example;

I've copied your code as follows;

=start_date+IF(days=0,0,SIGN(days)*SMALL(IF((WEEKD AY(start_date+SIGN(days)*(ROW(INDIRECT("1:"&ABS(da ys)*10))),2)<6)*ISNA(MATCH(start_date+SIGN(days)*( ROW(INDIRECT("1:"&ABS(days)*10))),holidays,0)),ROW (INDIRECT("1:"&ABS(days)*10))),ABS(days)))

But where do i put in my criteria?
my start date is in B2, i want to add 13 working days, and my holidays are
contained in cell reference C2:C7


"Ron de Bruin" wrote:

Hi sdg8481

See
http://www.dicks-blog.com/archives/2...-addin-part-2/


--
Regards Ron de Bruin
http://www.rondebruin.nl



"sdg8481" wrote in message ...
Hi,

I'm trying to calculate what 13 working days are from a set date (cell a1),
however i understand that the formulae for this the 'WorkDays' one needs the
Analysis tool pack to function. This is the stumbling block as our
organisation are not able/permitted to install this on the server.

Does any one know another route i can take????

Thanks in advance




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default Working Days without the Analysis Pack

Hi

First this is array formula (not Enter but Ctrl-Shift-Enter)
http://www.cpearson.com/excel/array.htm

start_date is a named cell with the start date
days is a named cell with the working days
holidays is a named range with holidays

You can replace the named ranges with cell addresses if you want



--
Regards Ron de Bruin
http://www.rondebruin.nl



"sdg8481" wrote in message ...
Hi, Thanks for you quick response. However i'm having a bit of trouble
understanding the code, please could you help by the way of the following
example;

I've copied your code as follows;

=start_date+IF(days=0,0,SIGN(days)*SMALL(IF((WEEKD AY(start_date+SIGN(days)*(ROW(INDIRECT("1:"&ABS(da ys)*10))),2)<6)*ISNA(MATCH(start_date+SIGN(days)*( ROW(INDIRECT("1:"&ABS(days)*10))),holidays,0)),ROW (INDIRECT("1:"&ABS(days)*10))),ABS(days)))

But where do i put in my criteria?
my start date is in B2, i want to add 13 working days, and my holidays are
contained in cell reference C2:C7


"Ron de Bruin" wrote:

Hi sdg8481

See
http://www.dicks-blog.com/archives/2...-addin-part-2/


--
Regards Ron de Bruin
http://www.rondebruin.nl



"sdg8481" wrote in message ...
Hi,

I'm trying to calculate what 13 working days are from a set date (cell a1),
however i understand that the formulae for this the 'WorkDays' one needs the
Analysis tool pack to function. This is the stumbling block as our
organisation are not able/permitted to install this on the server.

Does any one know another route i can take????

Thanks in advance








  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 29
Default Working Days without the Analysis Pack

Absolutely Brilliant. Thank You very much, never used Arrays before thats
where i was going wrong. However one more thing if you would be so kind, is
how/where would i incorporate and IF statement so that if start_date cell a2
= "","",otherwise do that formula, i've tried putting the
=IF(A2="","",.......) but it doesn't seem to like it, any ideas.

"Ron de Bruin" wrote:

Hi

First this is array formula (not Enter but Ctrl-Shift-Enter)
http://www.cpearson.com/excel/array.htm

start_date is a named cell with the start date
days is a named cell with the working days
holidays is a named range with holidays

You can replace the named ranges with cell addresses if you want



--
Regards Ron de Bruin
http://www.rondebruin.nl



"sdg8481" wrote in message ...
Hi, Thanks for you quick response. However i'm having a bit of trouble
understanding the code, please could you help by the way of the following
example;

I've copied your code as follows;

=start_date+IF(days=0,0,SIGN(days)*SMALL(IF((WEEKD AY(start_date+SIGN(days)*(ROW(INDIRECT("1:"&ABS(da ys)*10))),2)<6)*ISNA(MATCH(start_date+SIGN(days)*( ROW(INDIRECT("1:"&ABS(days)*10))),holidays,0)),ROW (INDIRECT("1:"&ABS(days)*10))),ABS(days)))

But where do i put in my criteria?
my start date is in B2, i want to add 13 working days, and my holidays are
contained in cell reference C2:C7


"Ron de Bruin" wrote:

Hi sdg8481

See
http://www.dicks-blog.com/archives/2...-addin-part-2/


--
Regards Ron de Bruin
http://www.rondebruin.nl



"sdg8481" wrote in message ...
Hi,

I'm trying to calculate what 13 working days are from a set date (cell a1),
however i understand that the formulae for this the 'WorkDays' one needs the
Analysis tool pack to function. This is the stumbling block as our
organisation are not able/permitted to install this on the server.

Does any one know another route i can take????

Thanks in advance






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
date (minus) date = working days diff jjj Excel Discussion (Misc queries) 3 December 6th 05 03:16 PM
How do I modify the default working days in excel Othman Excel Discussion (Misc queries) 1 September 6th 05 09:43 AM
Why " data analysis plus " override " data analysis " once instal. Alfred H K Yip Excel Worksheet Functions 1 March 20th 05 08:10 AM
Is there a way to calculate business working days between dates i. hjyoungii Excel Worksheet Functions 2 February 23rd 05 04:25 PM
Date Difference On Working Days iwgunter Excel Worksheet Functions 2 November 8th 04 06:10 PM


All times are GMT +1. The time now is 01:23 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"