Using Multiple Worksheets

AlexanderBB

Well-known Member
Joined
Jul 1, 2009
Messages
1,835
Office Version
  1. 2019
  2. 2016
Platform
  1. Windows
I'm creating and populating yearly-named worksheets (starting Yr= 1959) at run time.
Am nearly there but struck a couple of glitches.
VBA Code:
If Sheets(Yr - 1958).Name <> CStr(Yr) Then
            Sheets(Yr - 1958).Name = CStr(Yr)
End If
            Worksheets(CStr(Yr)).Activate
            With Sheets(CStr(Yr))
                .Columns("A").ColumnWidth = 80
                .Columns("B").ColumnWidth = 10
                .Columns("C").ColumnWidth = 10
                .Columns("D").ColumnWidth = 10
                .Range("A1").Select
                ActiveWindow.FreezePanes = True
            End With
When it gets to 1960 FreezePanes has divided the sheet into 4 quarters at row 19.
And I need to set the format on Cols C and D to the same as 1959 (which I did manually).
What might be a good way to sort those 2 problems? Thanks.
PS I may need to add new sheets too but haven't got that far yet.
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).

Forum statistics

Threads
1,215,069
Messages
6,122,956
Members
449,096
Latest member
Anshu121

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