Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default NET WORKING DAYS formula

I have an excel sheet where i am using 'NETWORKINGDAYS' formula to compute
the effort variance. I have this file in a shared directory where i have
multiple users accessing this file. To get the correct value for (Net Working
days) formula, i have enabled Tools - Add-Ins - Analysis Toolpack option on
my machine. i can see the output value of this formula correctly after
enabling the above option.

But if someone else opens this file, they cannot see the formula active ..
they get to see "NAME?" in that cell instead of the figure. they have to
manually enable the analysis toolpack option.

Can someone suggest me the workaround if i can write a VBA macro to get this
value automatically visible whenever anyone opens this file directly from
server or if this file is sent as an attachment, they can view the actual
figures without manually enabling the option?..

note i am using Excel 2003 (11.8033.8122) SP2
Thanks,
Chitra

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default NET WORKING DAYS formula

If the addin is installed on the user's pc (depending on the installation, it
doesn't have to be!), you could use a macro like:

Option Explicit
Sub auto_open()
If Application.AddIns("Analysis ToolPak").Installed = False Then
Application.AddIns("Analysis ToolPak").Installed = True
End If
End Sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

(remember that macros need to be enabled by each user, too.)

chits wrote:

I have an excel sheet where i am using 'NETWORKINGDAYS' formula to compute
the effort variance. I have this file in a shared directory where i have
multiple users accessing this file. To get the correct value for (Net Working
days) formula, i have enabled Tools - Add-Ins - Analysis Toolpack option on
my machine. i can see the output value of this formula correctly after
enabling the above option.

But if someone else opens this file, they cannot see the formula active ..
they get to see "NAME?" in that cell instead of the figure. they have to
manually enable the analysis toolpack option.

Can someone suggest me the workaround if i can write a VBA macro to get this
value automatically visible whenever anyone opens this file directly from
server or if this file is sent as an attachment, they can view the actual
figures without manually enabling the option?..

note i am using Excel 2003 (11.8033.8122) SP2
Thanks,
Chitra


--

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
NET WORKING DAYS formula chits Excel Discussion (Misc queries) 0 May 8th 07 05:56 AM
Non working days The Rook[_2_] Excel Discussion (Misc queries) 4 March 31st 07 09:00 PM
Formula to find the working days difference between to dates? Mudgeman Excel Discussion (Misc queries) 2 May 15th 06 04:26 AM
Adding Working Days to a Formula jpw1972 Excel Discussion (Misc queries) 1 April 4th 06 09:46 AM
Working Days Mike Hebblewhite Excel Discussion (Misc queries) 1 January 30th 06 11:49 AM


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