VBA Autofit when Sheet Selected

tlc53

Active Member
Joined
Jul 26, 2018
Messages
399
Hi there,

I would like rows 15:74 to autofit when sheet77 (called A3) is selected. If possible, I would also like to set the minimum row height to 15.
Currently I have the below code but it only works when I save/exit the file and re-open.
Ideally I would like it to resize the rows every time sheet77 is selected. Is there a way to do this please?

Code under sheet77..
VBA Code:
Private Sub Worksheet_Active()
Call Auto_Fit_Rows
End Sub

Code under module..
VBA Code:
Sub Auto_Fit_Rows()
Rows("15:74").EntireRow.AutoFit
End Sub
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.

Forum statistics

Threads
1,216,131
Messages
6,129,066
Members
449,485
Latest member
greggy

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