Change footer colour usnig VBA??

cheekyrich

Board Regular
Joined
Jun 2, 2005
Messages
102
Hi folks, tried a million iterations and can't get this nice little macro to complete footer with a formatting... I want it to finish with a grey colour rather than black. Any suggestions please? Thank you kindly in advance...


Public Sub SetFooter()

sheetlist = Array("Presentation")
For i = LBound(sheetlist) To UBound(sheetlist)
Worksheets(sheetlist(i)).Activate
Application.ScreenUpdating = False
With ActiveSheet
.PageSetup.CenterFooter = .Range("g30").Text

End With
Next
End Sub


By the way, the poor coding above was a mishmash to restrict the macro to the single worksheet I wanted it applied to [hangs head in shame]... but it works at least :)

Rich
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
I reduced the unecessary!...


Public Sub SetFooter()
With ActiveSheet
.PageSetup.CenterFooter = .Range("e30").Text
End With
End Sub
 
Upvote 0
Hi

Try:

Code:
ActiveSheet.PageSetup.CenterFooter = "&K808080" & Range("E30").Text

Remark:
You did not specify which shade of grey and so I just picked one.
To specify a colour you use "&K" followed by the hex value of the rgb colour value.
 
Upvote 0

Forum statistics

Threads
1,214,924
Messages
6,122,294
Members
449,077
Latest member
Rkmenon

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top