Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default Sharing Workbook Nighmare

I am creating a workbook that will reside on a network drive. There will be approx. 15 different users accessing this workbook. Here is my delima

The workbook does this
Users will be creating multiple pages which will be copied and deleted from shared workbook when they close
Users will have the ability to add certain data to only 1 sheet of the shared workbook

I have a few users who are very paranoid and want the abilty to save the workbook locally in case of a power outtage, etc

How do I stick with a single shared notebook but allow users the option of saving locally and keeping the data on the one single sheet active

Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,885
Default Sharing Workbook Nighmare

Hi
don't think this is possible. They can make a copy of the sheet locally
but changes in this local copy are NOT reflected in the shared
workbook.

--
Regards
Frank Kabel
Frankfurt, Germany


TroyH wrote:
I am creating a workbook that will reside on a network drive. There
will be approx. 15 different users accessing this workbook. Here is
my delima:

The workbook does this:
Users will be creating multiple pages which will be copied and
deleted from shared workbook when they close. Users will have the
ability to add certain data to only 1 sheet of the shared workbook.

I have a few users who are very paranoid and want the abilty to save
the workbook locally in case of a power outtage, etc.

How do I stick with a single shared notebook but allow users the
option of saving locally and keeping the data on the one single sheet
active.

Thanks.


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 24
Default Sharing Workbook Nighmare

Hi TroyH,

Have you considered a schema wherein the user would work
on a local copy of the worksheet he/she needed, and then
update the shared workbook via a Workbook_BeforeSave
trigger?

Something like this:

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean,
Cancel As Boolean)
ThisWorkbook.Save 'Save the Local WB
'Update the Shared WB & Save It
'Your code to open the Shared WB
'Your code to transfer the current user
'entered data
'Your code to Save and Close the shared WB
ThisWorkbook.Saved = True
Cancel = True
End Sub

If the local copy of the single worksheet needs data from
the shared workbook, possibly it could be copied from the
shared workbook via a Workbook_Open trigger.

Depending on size and complexity, you may see some speed
enhancement except in the saving process.

Best Regards,
Walt


-----Original Message-----
I am creating a workbook that will reside on a network

drive. There will be approx. 15 different users accessing
this workbook. Here is my delima:

The workbook does this:
Users will be creating multiple pages which will be

copied and deleted from shared workbook when they close.
Users will have the ability to add certain data to only

1 sheet of the shared workbook.

I have a few users who are very paranoid and want the

abilty to save the workbook locally in case of a power
outtage, etc.

How do I stick with a single shared notebook but allow

users the option of saving locally and keeping the data on
the one single sheet active.

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
Sharing workbook Olivier Excel Worksheet Functions 3 April 30th 10 10:17 PM
Sharing a workbook Kerry Excel Discussion (Misc queries) 0 May 7th 09 02:08 PM
SHARING WORKBOOK valrom06 Excel Worksheet Functions 0 October 17th 07 06:00 PM
Workbook Sharing Sheryl[_2_] Excel Discussion (Misc queries) 3 August 24th 07 11:05 PM
Sharing a workbook Tørres K. Brøvig Excel Programming 0 November 20th 03 11:37 AM


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