Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have the following code to setup a footer:
Sub DateFooter() With Worksheets("sheet2").PageSetup .LeftFooter = UCase(Format(Date, "dddd mmmm d, yyyy")) End With End Sub In the code, how do I make it Bold Arial 10? Thank you for your help. Steven |
#2
![]() |
|||
|
|||
![]() -- HTH RP (remove nothere from the email address if mailing direct) "Steven" wrote in message ... I have the following code to setup a footer: Sub DateFooter() With Worksheets("sheet2").PageSetup .LeftFooter = UCase(Format(Date, "dddd mmmm d, yyyy")) End With End Sub In the code, how do I make it Bold Arial 10? Thank you for your help. Steven |
#3
![]() |
|||
|
|||
![]() -- HTH RP (remove nothere from the email address if mailing direct) "Steven" wrote in message ... I have the following code to setup a footer: Sub DateFooter() With Worksheets("sheet2").PageSetup .LeftFooter = UCase(Format(Date, "dddd mmmm d, yyyy")) End With End Sub In the code, how do I make it Bold Arial 10? Thank you for your help. Steven |
#4
![]() |
|||
|
|||
![]() Sub DateFooter() With ActiveSheet.PageSetup .LeftFooter = "&""Arial,Bold""&10" & UCase(Format(Date, "dddd mmmm d, yyyy")) End With End Sub -- HTH RP (remove nothere from the email address if mailing direct) "Steven" wrote in message ... I have the following code to setup a footer: Sub DateFooter() With Worksheets("sheet2").PageSetup .LeftFooter = UCase(Format(Date, "dddd mmmm d, yyyy")) End With End Sub In the code, how do I make it Bold Arial 10? Thank you for your help. Steven |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I create a footer containing more than 255 characters | Excel Discussion (Misc queries) | |||
Footer Settings in an Excel Sheet | Excel Discussion (Misc queries) | |||
Formatting a footer with a top border-line | Excel Discussion (Misc queries) | |||
How can I insert a cell reference in a footer (eg for variable foo | Excel Discussion (Misc queries) | |||
Date in Footer | Excel Worksheet Functions |