G Guest Sep 12, 2006 #1 I'm trying to create a workbook in which the column headings and row headings appear on all worksheets...how do I do that?
I'm trying to create a workbook in which the column headings and row headings appear on all worksheets...how do I do that?
G Guest Sep 12, 2006 #2 Select the cell beneath the row you want to freeze, and to the right of the column you want to freeze and: <Window> <Freeze Panes>
Select the cell beneath the row you want to freeze, and to the right of the column you want to freeze and: <Window> <Freeze Panes>
G Gord Dibben Sep 12, 2006 #3 Without doing each sheet manually.................. Private Sub Workbook_SheetActivate(ByVal Sh As Object) Range("B2").Select ActiveWindow.FreezePanes = True End Sub Gord Dibben MS Excel MVP
Without doing each sheet manually.................. Private Sub Workbook_SheetActivate(ByVal Sh As Object) Range("B2").Select ActiveWindow.FreezePanes = True End Sub Gord Dibben MS Excel MVP