ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Password protection/access (https://www.excelbanter.com/excel-discussion-misc-queries/230879-password-protection-access.html)

kefee85

Password protection/access
 
I have a workbook consisting of 14 separate worksheets. I would like for
each department to be able to access only their individual worksheet and two
summary worksheets, but not be able to view the other worksheets.

JBeaucaire[_90_]

Password protection/access
 
If you mean allow the "access to their sheet and let them change
things"...you'll need some pretty strong VBA code to do that.

If you mean "access their sheet and summary to read only"...then the answer
is simple. PDF files.

I use a free tool called PrimoPDF that installs a printer driver, let's me
create PDF files from inside any program. Create a PDF of their department
sheet and the summaries, send them that.

Our company stopped passing ACTUAL Excel files around years ago and we've
never regretted it.

My two cents... PrimoPDF.com
--
"Actually, I *am* a rocket scientist." -- JB

Your feedback is appreciated, click YES if this post helped you.


"kefee85" wrote:

I have a workbook consisting of 14 separate worksheets. I would like for
each department to be able to access only their individual worksheet and two
summary worksheets, but not be able to view the other worksheets.


Paul C

Password protection/access
 
If you hide all but the summary sheets and protect the workbook with a
password, you can then put in a auto_open macro to prompt for a password and
unhide sheets based on the response.

You would also need a auto_close macro to hide all of the sheets again for
the next user. You can get much fancier and do a custom form that uses
password characters, but that gets more involved.

In this simple version if the user hit cancel or enters an unrecognized
password no sheets will be unhidden. For added security protect the VBA
project so no one can get to the code and find the workbook password.

Something like this:
Sub Auto_Open()
x = InputBox("Enter Dept Password")

ActiveWorkbook.Unprotect Password:="password"
If x = "accounting1" Then Sheets("Sheet1").Visible = True
'ADD OTHER CONDITIONS

ActiveWorkbook.Protect Password:="password", Structu=True, Windows:=False

End Sub

Sub Auto_Close()
ActiveWorkbook.Unprotect Password:="password"
Sheets("Sheet1").Visible = False
'ADD OTHER SHEETS

ActiveWorkbook.Protect Password:="password", Structu=True, Windows:=False
End Sub
--
If this helps, please remember to click yes.


"kefee85" wrote:

I have a workbook consisting of 14 separate worksheets. I would like for
each department to be able to access only their individual worksheet and two
summary worksheets, but not be able to view the other worksheets.



All times are GMT +1. The time now is 02:31 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com