Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 425
Default Shared drive issue with Excel.

I currently have a shared workbook on a shared drive that several
people access to post their request for information. A few times an
hour, I check the worksheet and input a response. They later come back
and get the response I posted.

Problem: Various pc's keep locking the workbook up. The workbook will
say a certain user is in the workbook (although shared) and yet they
are not.

Any alternate suggestions?

Any way to create individual worksheet shortcuts on their desktops and
place the original in my workbook?

Or am I asking too much of Excel?

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 425
Default Shared drive issue with Excel.

I guess another (maybe simpler) way to put it would be:

Everything that happens on this sheet (the individual's sheet)
C:\Documents and Settings\Administrator\Desktop\[j.doe.xls]Sheet1


To be copied to this sheet (my master sheet)
C:\Documents and
Settings\Administrator\Desktop\[master.request.xls]Sheet3


and vice versa.

Thanx

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 249
Default Shared drive issue with Excel.

Yes, wrong application. Consider a messaging app such as NetMeeting.

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"J.W. Aldridge" wrote:
|I currently have a shared workbook on a shared drive that several
| people access to post their request for information. A few times an
| hour, I check the worksheet and input a response. They later come back
| and get the response I posted.
|
| Problem: Various pc's keep locking the workbook up. The workbook will
| say a certain user is in the workbook (although shared) and yet they
| are not.
|
| Any alternate suggestions?
|
| Any way to create individual worksheet shortcuts on their desktops and
| place the original in my workbook?
|
| Or am I asking too much of Excel?
|


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 425
Default Shared drive issue with Excel.


Dave Patrick wrote:
Yes, wrong application. Consider a messaging app such as NetMeeting.




Thanx Dave.

(but I am desparately trying here!)

However, is there is no code (change event?) that I can use that says:

Whenever a change is saved on THIS sheet (in this workbook):

update the next available row on:

C:\Documents and
Settings\Administrator\Desktop\[master.request.xls]Sheet1


Thanx.

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 249
Default Shared drive issue with Excel.

A completely different question but yes, you can use the Worksheet_Change
event to fire your code.

This may get you started.

----------------------------
Private Sub Worksheet_Change(ByVal Target As Range)
Dim mywkbk As Object
Set mywkbk = Application.Workbooks.Open("C:\test2.xls")
With mywkbk
Worksheets(1).Cells(1, 1) = "Hello"
Worksheets(1).Cells(1, 2) = "World"
End With
Application.DisplayAlerts = False
mywkbk.Save
mywkbk.Close
Set mywkbk = Nothing
Application.DisplayAlerts = True
End Sub
----------------------------

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"J.W. Aldridge" wrote:
| Thanx Dave.
|
| (but I am desparately trying here!)
|
| However, is there is no code (change event?) that I can use that says:
|
| Whenever a change is saved on THIS sheet (in this workbook):
|
| update the next available row on:
|
| C:\Documents and
| Settings\Administrator\Desktop\[master.request.xls]Sheet1
|
|
| Thanx.
|




  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Shared drive issue with Excel.

You dropped the leading dots on these lines:

.Worksheets(1).Cells(1, 1) = "Hello"
.Worksheets(1).Cells(1, 2) = "World"

Dave Patrick wrote:

A completely different question but yes, you can use the Worksheet_Change
event to fire your code.

This may get you started.

----------------------------
Private Sub Worksheet_Change(ByVal Target As Range)
Dim mywkbk As Object
Set mywkbk = Application.Workbooks.Open("C:\test2.xls")
With mywkbk
Worksheets(1).Cells(1, 1) = "Hello"
Worksheets(1).Cells(1, 2) = "World"
End With
Application.DisplayAlerts = False
mywkbk.Save
mywkbk.Close
Set mywkbk = Nothing
Application.DisplayAlerts = True
End Sub
----------------------------

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"J.W. Aldridge" wrote:
| Thanx Dave.
|
| (but I am desparately trying here!)
|
| However, is there is no code (change event?) that I can use that says:
|
| Whenever a change is saved on THIS sheet (in this workbook):
|
| update the next available row on:
|
| C:\Documents and
| Settings\Administrator\Desktop\[master.request.xls]Sheet1
|
|
| Thanx.
|


--

Dave Peterson
  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 249
Default Shared drive issue with Excel.

Thanks Dave.

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"Dave Peterson" wrote:
| You dropped the leading dots on these lines:
|
| .Worksheets(1).Cells(1, 1) = "Hello"
| .Worksheets(1).Cells(1, 2) = "World"


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
Protecting an Excel document on a Shared Drive lildarlin82 Excel Discussion (Misc queries) 6 October 21st 08 09:10 PM
Shared Excel Files on Network Drive Jay[_5_] New Users to Excel 1 September 4th 08 12:35 PM
Saving shared spreadsheets on a shared drive. Meridith Excel Discussion (Misc queries) 0 April 3rd 08 05:20 PM
Printing viewing a shared workbook on a shared drive aloomba Excel Discussion (Misc queries) 0 April 13th 07 02:52 PM
Excel on shared drive Greg Snidow Excel Discussion (Misc queries) 0 August 25th 05 04:22 PM


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