showing date & time in footer, and resizing font.

countryfan_nt

Well-known Member
Joined
May 19, 2004
Messages
758
Hello friends, hope all is well!

please help me with the code here please. Trying to place a custom footer, with a certain font size,
but I keep getting the font size in the footer (i.e. 1228 - Aug - 2018 18:16:07)
Please help me place only the date & time in the footer.

Thanks a lot in advance.


Code:
Sub FormatDate()
    With ActiveSheet.PageSetup

datestring = Format(Now(), "DD - MMM - YYYY  HH:MM:SS")

Sheets("Physician Contract").Select
ActiveSheet.PageSetup.LeftFooter = "&""times new roman"" & 12" & datestring
  
     End With
End Sub
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Try this:
Code:
Sub CreateFooter()
    Dim dateString As String
    dateString = Format(Now, "DD - MMM - YYYY  HH:MM:SS")
    With ActiveSheet.PageSetup
        .LeftFooter = "&""Times New Roman""&12 " & dateString
        .RightFooter = ""
    End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,527
Messages
6,114,142
Members
448,551
Latest member
Sienna de Souza

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