Hi, i've found a way to change the footer values, and I run this at the 'on_open' event of the workbook. The only problem is that this is a bit slow... The code is here:
My question, (may be OT to this forum) is there a special code that I can just put into the footer that will always give me the current working directory/full file name & path instead of having to use VBA? Like &something or anything?
Frank
Code:
With Unit1.PageSetup
.LeftFooter = "&12" + ThisWorkbook.Path + "\" + ThisWorkbook.name
End With
My question, (may be OT to this forum) is there a special code that I can just put into the footer that will always give me the current working directory/full file name & path instead of having to use VBA? Like &something or anything?
Frank