Autoexpand Row Height on a Password Protected Spreadsheet

Chris Waller

Board Regular
Joined
Jan 18, 2009
Messages
183
Office Version
  1. 365
Platform
  1. Windows
Morning All,

I am using Excel 2010 which I am experiencing a small problem with. I have a spreadsheet which is password protected, this spreadsheet contains a large number of formulae lifting data from another spreadsheet. When I make a selection from cell O2 I would like rows X5:Y11 to autoexpand row height to accommodate all the text picked up by the formula. I am reluctant to remove the password protection as I can imagine that some of the formulae will be overtyped or worse, someone makes changes to the formulae. TIA
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Not sure I'm getting all that you are looking for BUT here's a Starting point.

First My Sample Activesheet IS PROTECTED with Password Secret and I created Data In cells F7 and G8 that needs "Expansion". Note that when
I SELECT cell C4 the Macro Fires...

Excel 2010
ABCDEFGHIJ
1
2
3
4
5
6
7This is a test of
8This is a test of

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1
Paste the following code into Sheet1's Event code sheet

Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address <> "$C$4" Then Exit Sub
ActiveSheet.Unprotect Password:="Secret"
Target.Offset(3, 0).Rows("1:2").EntireRow.AutoFit
ActiveSheet.Protect Password:="Secret"
End Sub
 
Upvote 0
Jim,

Thanks for your response. Sorry it has taken a while to get back to you, but I am innundated with work at the moment. I did send a response yesterday, but for some reason it appears to have disappeared. I did try your code above with amendments to fit my scenario, but it didn't quite work out. I changed the reference from C4 to O2. I canged the password to the one I am using and the rows I need to expand (height) are from cells X5 to Y11. When I pick a different choice in O2 I need the cells in X5 to Y11 to resize for the new selection rather than the cells staying expanded after the first search. HTH
 
Upvote 0

Forum statistics

Threads
1,215,836
Messages
6,127,173
Members
449,368
Latest member
JayHo

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