Code To Freeze Top Row

Dazzawm

Well-known Member
Joined
Jan 24, 2011
Messages
3,748
Office Version
  1. 365
Platform
  1. Windows
May sound odd but I have my reasons! I already have macro enabled workbooks and would like a line of code that will freeze the top row when opened un unfreezed when I close. Thanks.
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
You can achieve the functionality you described by adding VBA code to your macro-enabled workbook. Specifically, you can use the `Workbook_Open` and `Workbook_BeforeClose` events to freeze the top row when the workbook is opened and unfreeze it when the workbook is closed.

Here's a sample VBA code that you can add to your workbook's VBA project:


VBA Code:
Private Sub Workbook_Open()
    ' This code will run when the workbook is opened
    ActiveWindow.SplitRow = 1
    ActiveWindow.FreezePanes = True
End Sub


Private Sub Workbook_BeforeClose(Cancel As Boolean)
    ' This code will run before the workbook is closed
    ActiveWindow.FreezePanes = False
End Sub
 
Upvote 0
Solution
You can achieve the functionality you described by adding VBA code to your macro-enabled workbook. Specifically, you can use the `Workbook_Open` and `Workbook_BeforeClose` events to freeze the top row when the workbook is opened and unfreeze it when the workbook is closed.

Here's a sample VBA code that you can add to your workbook's VBA project:


VBA Code:
Private Sub Workbook_Open()
    ' This code will run when the workbook is opened
    ActiveWindow.SplitRow = 1
    ActiveWindow.FreezePanes = True
End Sub


Private Sub Workbook_BeforeClose(Cancel As Boolean)
    ' This code will run before the workbook is closed
    ActiveWindow.FreezePanes = False
End Sub
Much obliged squire.
 
Upvote 0

Forum statistics

Threads
1,215,079
Messages
6,123,005
Members
449,092
Latest member
masterms

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