Workbook Protection VBA code on Hidden Sheets like UserInterfaceOnly

jaysunice

New Member
Joined
Jan 13, 2011
Messages
12
I am trying to loosely "secure" a workbook and I feel like there ought to be a better way.

I have a main interaction tab (let's call it sheet Main) where end-users make selections on various drop-downs. However, the drop-down selection/changes drive VBA code that manipulate other sheets (let's call them sheet X and Sheet Y) in the workbook.

The problem: the VBA code cannot run when these other sheets are hidden, therefore, right now I have code, a Protect() and UnProtect() subroutine that run at various points of the code to allow for a pleasant user experience -- one where they don't know that the sheets (X and Y) are being hidden/un-hidden behind the scenes. I feel like this is awkward and the coding is somewhat repetitive.

I could make the workbook such that the sheets X and Y are visible from the get go, but protected, but I'd rather not have the users even see the sheet.

Is there a way to run VBA code that effects hidden sheets without manually un-hiding/re-hiding them each time?
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
having read your post it gives me the idea that i may be better hiding sheets so other cant screw things up so i to will be looking out for a way to hide sheet of lock column for editing would be another option
 
Upvote 0
Most code will run on a hidden sheet. Which bits are failing on you?

Learn something every day...you are right. I believe I can get the code to work with sheets still hidden. The statements that were breaking were Sheets("XXXX").Select when really I can more appropriately use Sheets("XXXX").Activate

THANKS!
 
Upvote 0
You almost never need to actually select or activate a sheet in code. Just manipulate it directly.
 
Upvote 0

Forum statistics

Threads
1,223,714
Messages
6,174,051
Members
452,542
Latest member
Bricklin

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