Protect Sheet - Allow Row Height only changes for specific range

RMXByker

New Member
Joined
Apr 1, 2010
Messages
38
Hello all,

Back at it again trying to learn more and came across something I'm having a hard time figuring out. I have a workbook that protects all the sheets with vba. I'd like to protect a specific worksheet but still allow row height changes on only a specific set of rows (10-1000). I'm not aware of using the Range command with the Protect so I'm at a bit of a lose. Any one have any ideas?

Here's the protect code I'm using right now.

Code:
ActiveSheet.Protect Password:="TESTING", AllowInsertingRows:=True, AllowDeletingRows:=True, AllowFormattingCells:=True, AllowFormattingRows:=True

Not a fan of the Allow FormattingRows command because it takes away from the usage I have of being protected. That's the section I want to limit...
 
Last edited:

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.

Forum statistics

Threads
1,216,477
Messages
6,130,879
Members
449,603
Latest member
dizze90

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