Sorting Protected Worksheet

  • Thread starter Thread starter Vonner
  • Start date Start date
V

Vonner

Is there a way to create a macro that sorts a protected worksheet wher
some of the cells are locked without putting the protection password i
the macro?

I've created a workbook that is used for keeping track of basebal
stats. On one of the worksheets (that is protected) I have an are
where the user can enter the stats for there players but the playe
name and a few other columns are locked (un-editable). I'm trying t
create a macro to sort the stats based on the batting average, but i
order to keep everything lined up correctly I need to sort the unlocke
cells along with four columns of locked cells. I can't figure out i
that possible.

Like I said, I got it to work by adding code to unprotect the shee
before sorting, then protecting it again after the sort, but I had t
put the protection password in the code to do it. That defeats th
purpose of password protecting the sheet in the first place because an
can get the password by browsing the code.

Anyone have any ideas?

Thanks
 
Hi Vonner,
That defeats the
purpose of password protecting the sheet in the first place because any
can get the password by browsing the code.

Try locking and protecting the project:

Right- click the project in the VBE , select VBA Project Properties,
Protection Tab...

This will hide your code from casual users. Excel does not, however, provide
a secure environment and a determined user will readily be able to gain
access to your code. Such determination need not exceed suitable Google
search.
 
Back
Top