Hello,
I am working on a macro that adds the footer to my Excel spreadsheet.
I have the letterhead in Word and the footer is in Arial Black, bold, size 10, in a particular shade of green.
How should I edit the following code, so that the footer is inputed in font 10? At the moment, the footer is inserted as Arial 11 (I guess it's Excel default font size).
Quote:
With ActiveSheet.PageSetup
.LeftHeader = ""
.CenterHeader = ""
.RightHeader = ""
.LeftFooter = ""
.CenterFooter = _
"&""Arial Black,Normale""&K339966MY COMPANY Ltd" & Chr(10) & "VAT registration No. GB 111 1111 11" & Chr(10) & "Registered in England and Wales No. 1111111"
.RightFooter = ""
|