Hi veronica,
Something like this should get you on your way. Attach it to a Command Button placed on Sheet 1
![]()
Sub Format_Each_Sheet() Dim ws As Worksheet For Each ws In Worksheets 'Rename Sheet1 for your first sheet If ws.Name <> ("Sheet1") Then 'code for your formatting goes here End If Next ws End Sub
Bookmarks