From: Trekman03 on 4 Sep 2009 11:46 How can I change the custom footer date format from 27-08-09 to 27-Aug-09 in Excel 2007?
From: StuartBisset on 4 Sep 2009 12:16 This isn't really much use but I thought I'd tell you anyway - it seems to follow the short date settings for the system (Control Panel > Regional and Language Options > Customize this format). I changed mine from "dd/mm/yyy" to "d mmm yyy" and I noticed that the excel footer changed from 04/09/09 to 4 09 09. with "dd m yyy" excel showed 04 9 09. So it seems that excel recognises when there is an "/" in the date format and it recognises the difference between m & mm but it does not know how to do mmm or yyy. Strange. But it may not matter anyway as the sheet would take on the short date format setting from the PC of whoever you send the spreadsheet to anyway. Sorry thats not a proper answer. There may be one out there but I'm afraid that's my penny's worth. Stuart Bisset www.insightmodelling.com
From: Shane Devenshire on 4 Sep 2009 14:30 Hi, The following code puts the current date into the left Footer: Private Sub Workbook_BeforePrint(Cancel As Boolean) ActiveSheet.PageSetup.LeftFooter = Format(Date, "d-mmm-dd") End Sub or "dd-mmm-dd" 1. To add this code to your file, press Alt+F11, 2. In the VBAProject window, top left side, find thisWorkbook under your file name and double click it. 3. Paste in or type the code above. -- If this helps, please click the Yes button. Cheers, Shane Devenshire "Trekman03" wrote: > How can I change the custom footer date format from 27-08-09 to 27-Aug-09 in > Excel 2007?
|
Pages: 1 Prev: excel spreadsheet not visible Next: To Display Negative Dates |