Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 60
Default Using Weekday function with no add-ins

Hiya,

I'm creating an excel model for use by a team of staff in my office.

I've included the weekday function for one part of the model to calculate
days where we shift to/from daylight savings.

The team is huge, not very excel literate, and shift worker types. Hence I
don't want to go round installing the analysis toolpack add-in for them all.

Is there anyway I can get the function to work without using the toolpack?
Perhaps by writing a VB function myself? - if so, can you help me with the
code please?

Thanks,

Basil
  #2   Report Post  
Posted to microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,123
Default Using Weekday function with no add-ins

hi Basil

Weekday is a normal function, not a ATP function
No need to install the add-in


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Basil" wrote in message ...
Hiya,

I'm creating an excel model for use by a team of staff in my office.

I've included the weekday function for one part of the model to calculate
days where we shift to/from daylight savings.

The team is huge, not very excel literate, and shift worker types. Hence I
don't want to go round installing the analysis toolpack add-in for them all.

Is there anyway I can get the function to work without using the toolpack?
Perhaps by writing a VB function myself? - if so, can you help me with the
code please?

Thanks,

Basil

  #3   Report Post  
Posted to microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Using Weekday function with no add-ins

WEEKDAY( ) is a standard function - no need to install the ATP add-in.

Hope this helps.

Pete

On Apr 30, 3:46 pm, Basil wrote:
Hiya,

I'm creating an excel model for use by a team of staff in my office.

I've included the weekday function for one part of the model to calculate
days where we shift to/from daylight savings.

The team is huge, not very excel literate, and shift worker types. Hence I
don't want to go round installing the analysis toolpack add-in for them all.

Is there anyway I can get the function to work without using the toolpack?
Perhaps by writing a VB function myself? - if so, can you help me with the
code please?

Thanks,

Basil



  #4   Report Post  
Posted to microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 178
Default Using Weekday function with no add-ins

BUT...
If, at some point, you needed to have the Analysis Toolbar active in a
workbook that you are distributing (for example, to use the EOMonth( )
formula), to activate it, put this in the 'ThisWorkbook' Open procedure of
your workbook...

Private Sub Workbook_Open()
On Error Resume Next
AddIns("Analysis ToolPak").Installed = True
AddIns("Analysis ToolPak - VBA").Installed = True
End Sub

--
HTH,
Gary Brown

If this post was helpful to you, please select ''YES'' at the bottom of the
post.



"Basil" wrote:

Hiya,

I'm creating an excel model for use by a team of staff in my office.

I've included the weekday function for one part of the model to calculate
days where we shift to/from daylight savings.

The team is huge, not very excel literate, and shift worker types. Hence I
don't want to go round installing the analysis toolpack add-in for them all.

Is there anyway I can get the function to work without using the toolpack?
Perhaps by writing a VB function myself? - if so, can you help me with the
code please?

Thanks,

Basil

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
WEEKDAY() function: display TEXT not numeric weekday tom Excel Discussion (Misc queries) 3 November 21st 06 04:32 PM
WEEKDAY Function? JP Excel Worksheet Functions 5 April 21st 06 06:54 PM
Combining today +1 and weekday function Monique Excel Worksheet Functions 12 March 12th 05 12:41 PM
Weekday Function John Excel Worksheet Functions 2 January 7th 05 11:39 AM
weekday function John New Users to Excel 0 January 7th 05 11:13 AM


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