A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi
I stripped down a bit your macro
But to make it more effective we need a copy of your workbook and more details of your macro process and goals
*******************************************************************************
Sub Reports_Setup()
'' Reports_Setup Macro
'
''' Keyboard Shortcut: Ctrl+r
Application.DisplayAlerts = False
With Range("A1:C1")
.HorizontalAlignment = xlLeft
.VerticalAlignment = xlBottom
.WrapText = False
.Orientation = 0
.AddIndent = False
.IndentLevel = 0
.ShrinkToFit = False
.ReadingOrder = xlContext
.MergeCells = True
End With
Range("A1:C1").Offset(1, 0).Rows("1:4").EntireRow.Delete Shift:=xlUp
Range("A1:C1").Offset(2, 0).Rows("1:9").EntireRow.Delete Shift:=xlUp
With ActiveCell.Characters(Start:=1, Length:=47).Font
.Name = "Calibri"
.FontStyle = "Bold"
.Size = 10
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ThemeColor = xlThemeColorLight1
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Cells.Replace What:="Sales Offices: ", Replacement:="", _
LookAt:=xlPart, SearchOrder:=xlByRows, MatchCase:=False, _
SearchFormat:=False, ReplaceFormat:=False
With ActiveCell.Characters(Start:=1, Length:=72).Font
.Name = "Calibri"
.FontStyle = "Bold"
.Size = 10
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ThemeColor = xlThemeColorLight1
.TintAndShade = 0
.ThemeFont = xlThemeFontMinor
End With
Cells.Replace What:=" Investment: Portfolio Manager: Full Name: ", _
Replacement:="", LookAt:=xlPart, SearchOrder:=xlByRows, MatchCase:= _
False, SearchFormat:=False, ReplaceFormat:=False
Range("A1:W1").Offset(10, 0).Replace What:="Intrernational Sales", Replacement:= _
"International Sales", LookAt:=xlPart, SearchOrder:=xlByRows, MatchCase:= _
False, SearchFormat:=False, ReplaceFormat:=False
Application.DisplayAlerts = True
End Sub
**************************************************************************************
Do let me know if you need more help
Regards