Try this macro:
Sub format_worksheets()
Dim worksheetnames() As Variant
worksheetnames = Array("Operations", "Staff", "Support") 'and other worksheets
Application.ScreenUpdating = False
For i = 0 To UBound(worksheetnames)
MsgBox worksheetnames(i)
With Worksheets(worksheetnames(i))
.Columns("A:A").ColumnWidth = 2#
.Columns("B:B").ColumnWidth = 13.14
.Columns("C:C").ColumnWidth = 10.29
' and other columns
.Rows("1:1").RowHeight = 12.75
.Rows("2:2").RowHeight = 40.5
' and other rows
.Columns("B:B").HorizontalAlignment = xlCenter
.Columns("B:B").VerticalAlignment = xlCenter
.Columns("C:C").HorizontalAlignment = xlCenter
.Columns("C:C").VerticalAlignment = xlCenter
.Columns("E:E").HorizontalAlignment = xlCenter
.Columns("E:E").VerticalAlignment = xlCenter
' and other columns
End With
Next i
Application.ScreenUpdating = True
End Sub
Hope this helps / Lars-Åke