Computing.Net > Forums > Windows 2000 > How can I protected my worksheet (share worksheet on server) from copy by the other

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

How can I protected my worksheet (share worksheet on server) from copy by the other

Reply to Message Icon

Name: dewi_perin
Date: May 4, 2000 at 00:10:32 Pacific
Comment:

I used Ms.Excel 2000. My worksheet is a share worksheet on server.How can I protected my worksheet from copy by the others ? I've already protected the worksheet with password, but somebody still can do copy from the worksheet to a new worksheet.



Sponsored Link
Ads by Google

Response Number 1
Name: Mark
Date: May 4, 2000 at 04:41:46 Pacific
Reply:

Without the use of Macro, there are a few things you can do to protect your worksheet from copying, like specifying a password to open or modify to the whole workbook (this is accessible in Save As...), protect individual worksheets with a password (remember to protect cells in a worksheet as well or else worksheet protection won't work), protect workbook with a password (so that others can't add/delete any worksheet in your workbook).

If you know how to use Macro, putting something like this in the Auto_Open() method will prevent anyone from copy any cell other than unprotected cells:

Const sPassword as String = "password"
Dim ws As Worksheet

ThisWorkbook.Unprotect sPassword
For Each ws In ThisWorkbook.Worksheets
With ws
.Unprotect sPassword
.EnableSelection = xlUnlockedCells
.Visible = xlSheetVisible
.Protect sPassword, False, True, True, False
End With
Next ws

By the way, this piece of code works in Excel 97, don't know about Excel 2000 because haven't used it yet.

Hope this helps.
Mark.


0

Response Number 2
Name: John
Date: May 5, 2000 at 20:28:00 Pacific
Reply:

Place the Excel spreadsheet in a folder(Directory) and set the access rights those you want to use it, this way if somebody other than the people that have access to this folder can not access it at all. If you do not have the privileges to do this just have your network admin do it, he or she should be able to help you. We do this all the time at the company I work for. Hope this helps!


0

Sponsored Link
Ads by Google
Reply to Message Icon

Related Posts

See More


Modem not recognised by W... how do i connect to nt4.0



Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Windows 2000 Forum Home


Sponsored links

Ads by Google


Results for: How can I protected my worksheet (share worksheet on server) from copy by the other

How can I undelete NTFS files in NT/2000 Server? www.computing.net/answers/windows-2000/how-can-i-undelete-ntfs-files-in-nt2000-server/7565.html

How can I use my WAN for VPN www.computing.net/answers/windows-2000/how-can-i-use-my-wan-for-vpn/60394.html

How can I remote forrm Win2K Server www.computing.net/answers/windows-2000/how-can-i-remote-forrm-win2k-server/36446.html