Protected Sheet - Using Groups without a Macro

A

AdamJ

Hi,

I have a worksheet which will be used for data input with a number o
total fields locked and a number or groupped rows. I can't use macros a
I need to be able to drop the worksheet into another file so is ther
anyway to allow for grouping to be used under the standard protect shee
options without using macros/vba?

Thanks,
Ada
 
G

GS

This is a non-persistent setting that must be reset while resetting
sheet protection each time any workbook containing the subject sheet is
opened. VBA is required and so you may have to rethink how your project
files are managed to make this work.

This would require your users to have an addin installed that will
reset this feature -EITHER- whenever the subject sheet is activated,
-OR- when a workbook containing the subject sheet is opened. This will
require the sheet is 'tagged' with a means of identifying it so only
sheets with that tag get processed.

I use a local scope defined name ("uiProtect") to hold this 'tag', and
its RefersTo holds that sheet's specific protection settings in a
delimited string. If the name exists then protection is reset when the
workbook containing it is opened. (I use the 'UserInterfaceOnly'
setting so I don't have to toggle protection when making changes to
locked cells. This is a non-persistent setting and so must be reset
each runtime)

Project workbooks do not contain macros, but they are *entirely*
managed by the project addin, meaning that they can't even be opened
without using the addin's 'Open' menuitem.

--
Garry

Free usenet access at http://www.eternal-september.org
Classic VB Users Regroup!
comp.lang.basic.visual.misc
microsoft.public.vb.general.discussion
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top