I would like to use this macro on multiple sheets within this workbook with the same ranges. I would like to copy the Hoffman formats to the next new worksheet. I tried removing "Vierthaler", however my syntax or something is not formatted properly. I want to copy multiple times using this macro. Thanks for any assistance you can provide.
' CopyFormatFormula Macro
'
'
Range("F27:F38").Select
Selection.Copy
Sheets("Vierthaler").Select
Range("F27").Select
ActiveSheet.Paste
Sheets("Hoffman").Select
Range("H27:H38").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Vierthaler").Select
Range("H27").Select
ActiveSheet.Paste
Sheets("Hoffman").Select
Range("I27:I38").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Vierthaler").Select
Range("I27").Select
ActiveSheet.Paste
End Sub
' CopyFormatFormula Macro
'
'
Range("F27:F38").Select
Selection.Copy
Sheets("Vierthaler").Select
Range("F27").Select
ActiveSheet.Paste
Sheets("Hoffman").Select
Range("H27:H38").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Vierthaler").Select
Range("H27").Select
ActiveSheet.Paste
Sheets("Hoffman").Select
Range("I27:I38").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Vierthaler").Select
Range("I27").Select
ActiveSheet.Paste
End Sub