LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #2   Report Post  
Blue Hornet
 
Posts: n/a
Default

Best way I know how to do this is with a macro. A simple one to do
what you want would be:

Option Explicit
Dim Counter As Integer
Dim StartSheet As String

Sub Unfreeze()
' First find where we're starting from
StartSheet = ActiveSheet.Name

' Step through sheets and unfreeze
For Counter = 1 To Worksheets.Count
Worksheets(Counter).Activate
ActiveWindow.FreezePanes = False
Next Counter

' Go back to the start point
Sheets(StartSheet).Activate
End Sub

 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to make one CSV file from two Excel sheets? Marek L. Excel Discussion (Misc queries) 3 February 13th 05 07:47 PM
can I make pulldown text boxes in excel sheets Frank Excel Discussion (Misc queries) 1 February 11th 05 05:05 PM
How do I make a sheet that combines all tabbed sheets & update as. ahmebah New Users to Excel 2 January 31st 05 03:17 PM
Define inputs and outputs to make functions from sheets Prophet of Nixon Excel Discussion (Misc queries) 1 January 10th 05 05:16 PM
i need to make the sheets name come from a cell sam wildig New Users to Excel 8 November 29th 04 02:26 PM


All times are GMT +1. The time now is 09:49 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"