Protect SharedWorkbook

Krishnab4u

New Member
Joined
Jul 16, 2018
Messages
34
Dear All,
I have a workbook which has to be shared between 3 to 4 people, who will update data at the same time.
but depending on the user opening the file, certain sheets to be hidden and visible.
How do i achieve the same. Kindly suggest.

Regards
Krishnamoorthy S
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Hi,
Record macro in workbook open event
If Environ("username") = "ABCD" Then
Sheets("SheetName").Visible = xlVeryHidden"
End if

This will hide the sheet(s) and can only be made visible again through the use of VBA code. (As follows
Sheets("SheetName").Visible = True"

Hope this helps,
Tarun
 
Upvote 0

Forum statistics

Threads
1,215,558
Messages
6,125,511
Members
449,236
Latest member
Afua

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top