Hi,
Please could someone help me?
I have this following 2 codes that works fine but I was wondering how it can be made into 1 code?
Any help would be much appreciated.
Thanks
Dan
Please could someone help me?
I have this following 2 codes that works fine but I was wondering how it can be made into 1 code?
Code:
Cells(Rows.Count, "A").End(xlUp).Select
Selection.ClearComments
With Selection.Interior
.Pattern = xlNone
.TintAndShade = 0
.PatternTintAndShade = 0
End With
With Selection.Font
.Name = "Gill Sans MT"
.Size = 11
End With
Cells(Rows.Count, "B").End(xlUp).Select
Selection.ClearComments
With Selection.Interior
.Pattern = xlNone
.TintAndShade = 0
.PatternTintAndShade = 0
End With
With Selection.Font
.Name = "Gill Sans MT"
.Size = 11
End With
Any help would be much appreciated.
Thanks
Dan