I have the following code, however I need "Customer Name" to merge and centre across columns B to J instead of appearing in just column B. How do I change the below code to reflect this?
Range("B" & Range("B" & Rows.Count).End(xlUp).Row + 3).Select
ActiveCell.FormulaR1C1 = "Customer Name"
Selection.Font.Bold = False
With Selection.Font
.Name = "Arial"
.Size = 18
End With
Range("B" & Range("B" & Rows.Count).End(xlUp).Row + 3).Select
ActiveCell.FormulaR1C1 = "Customer Name"
Selection.Font.Bold = False
With Selection.Font
.Name = "Arial"
.Size = 18
End With