VBA date header in PDF

picklefactory

Well-known Member
Joined
Jan 28, 2005
Messages
506
Office Version
  1. 365
Platform
  1. Windows
Hi folks. Confused... as usual :(
I have the following code to export a ws to pdf and to just add the date from a cell value as the header. It works OK other than the fact that it keeps changing the date format to US mm/dd/yyyy where I'd like UK dd/mm/yyyy. I've tried changing the format in the source cell (P1) to various formats, but it just ignores it and sticks with US date format. I'm sure I'm missing something daft.... again. Any suggestions please?
Thanks

VBA Code:
Sub AddHeader_CurrentSheetOnly()

'Add P1 from active sheet to active sheet's header
    
    Sheets("PAYROLL TO SEND").Select
    
    With ActiveSheet.PageSetup
        .LeftHeader = Range("P1").Value
    End With


' Save PDF copy of 'Payroll to Send' sheet
    
    Dim Path As String
    Dim SaveAsStr As String
    
    Path = Worksheets("PAYROLL TO SEND").Range("P1").Text
    SaveAsStr = "M:\COMPANY SHARED\wages 2\TIMESHEETS HISTORY\" & Path

    ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, _
        Filename:=SaveAsStr & ".pdf", _
        OpenAfterPublish:=True

End Sub
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Simple as that!!!!
Perfect, thank you footoo. You all make it look so easy. Much appreciated.
 
Upvote 0

Forum statistics

Threads
1,215,430
Messages
6,124,846
Members
449,194
Latest member
HellScout

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