VBA FreezePanes on multiple worksheets in my workbook

rezacs

New Member
Joined
Sep 24, 2018
Messages
22
I created a vba macro that helps us apply some formatting to our reports before we send them out.

At this point everything works on a workbook with a single worksheet.

However, if there are multiple worksheets I am unable to apply FreezePane to more than the first worksheet.

I tried to change ActiveWindow to ws but it fails, I also tried adding a FreezePane = False before the row selection and true.

Can anyone help me, i'm stuck.

Here is my code:

Code:
Sub FormatForPrint()


Dim ws As Worksheet


Dim dateString As String, TheDate As Date
Dim valid As Boolean: valid = True


Do
  dateString = Application.InputBox("Enter Data as of Date (m/d/yyyy): ")


  If IsDate(dateString) Then
    TheDate = DateValue(dateString)
    valid = True
  Else
    MsgBox "Invalid date"
    valid = False
  End If
Loop Until valid = True


Dim row As Integer, PRow As Integer
    PRow = Application.InputBox("Enter row number to filter: ")


For Each ws In ActiveWorkbook.Worksheets
    With ws
        If .Name <> "Report Criteria" Then
            ws.PageSetup.LeftMargin = Application.InchesToPoints(0.25)
            ws.PageSetup.RightMargin = Application.InchesToPoints(0.25)
            ws.PageSetup.TopMargin = Application.InchesToPoints(0.75)
            ws.PageSetup.BottomMargin = Application.InchesToPoints(0.75)
            ws.PageSetup.HeaderMargin = Application.InchesToPoints(0.3)
            ws.PageSetup.FooterMargin = Application.InchesToPoints(0.3)
            ws.PageSetup.Zoom = False
            ws.PageSetup.FitToPagesWide = 1
            ws.PageSetup.FitToPagesTall = False
            Rows(PRow + 1 & ":" & PRow + 1).Select
            ActiveWindow.FreezePanes = True
            ws.PageSetup.LeftHeader = "&""Arial Narrow""&9 &F"
            ws.PageSetup.RightHeader = "&""Arial Narrow""&9Data as of " & TheDate
            ws.PageSetup.LeftFooter = "&""Arial Narrow""&9 &Z&F"
            ws.PageSetup.RightFooter = "&""Arial Narrow""&9Page &P of &N" & Chr(10) & "Printed &D"
            If ws.AutoFilterMode = False Then
            ws.Rows(PRow).AutoFilter
            End If
        End If
    End With
    Next ws
End Sub
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
And of course I just found the answer just minutes after I asked.

Added
Application.Goto Reference:=.Range("A1"), Scroll:=True

on the line before
Rows(PRow + 1 & ":" & PRow + 1).Select

and it worked.
 
Upvote 0
Im not sure it will cancel the freeze pane should PRow change though.
 
Upvote 0
Heres a way:

Code:
For Each ws In ActiveWorkbook.Worksheets
    With ws
        If .Name <> "Report Criteria" Then
            .Activate
            With ActiveWindow
                .SplitRow = PRow + 1
                .SplitColumn = 0
                .FreezePanes = True
            End With
        End If
    End With
Next ws
 
Upvote 0
Thanks, that worked nicely as well. Did need to remove the +1 after PRow in this case, otherwise it was freezing the row under the header row.

Do you know, would there be a benefit to using this over the other option I had found? Less prone to error perhaps?

I figured we would have the issue with the autofilter and freezepanes if the row changed on other sheets, most of our reports are fairly simple so it isn't too concerning, however we do have a few reports where this would happen and we would just need to correct that as needed. Do you know if there is a way to address that? Maybe something that can determine the header row automatically?
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,784
Messages
6,121,540
Members
449,038
Latest member
Guest1337

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