Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks All:
JLGWhiz: I'll keep your note in mind for future. Dave: Right on the money (again), in spite of those stupid fingers. I should have posted a bit sooner - Maybe after 1/2 Day instead of 1-1/2 days of futile, ignorant searching. Thanks again. "JLGWhiz" wrote: One more thing to check. If you have used the term "FORMAT" elsewhere in your code VBA will remember it and will automatically change subsequent occurences to the same case. "BEEJAY" wrote: The following code, after using for over 2 years, suddenly gives error. Hi-lites FORMULA at line with Compile Error: Wrong number of arguments or invalid property. Checked same code on my test computer, on numerous files and it works great. Tried changing FORMULA to lower case - It auto flips back to Upper Case. Deleted code, and replaced it with working copy from test computer. As soon as I tried it, it again came up with same error and it had flipped 'Formula' to 'FORMULA'. I also tried it after completely closing all files and Excel, Re-opening Excel, open one file that I know worked on my test machine. Still the same problem. Any suggestions would be greatly appreciated. Thank You Sub FooterInsertFormat() With ActiveSheet.PageSetup .PrintTitleRows = "" .PrintTitleColumns = "" End With ActiveSheet.PageSetup.PrintArea = "" With ActiveSheet.PageSetup .LeftFooter = "&""Arial,Bold""&8" & FORMAT(Date, "mmm, dd, yyyy") & Chr(10) & "JFS" .CenterFooter = "" .RightFooter = "&""Arial,Bold""&8&F / &A" & Chr(10) & "Page &P of &N" .LeftMargin = Application.InchesToPoints(0.5) .RightMargin = Application.InchesToPoints(0.5) .TopMargin = Application.InchesToPoints(0.5) .BottomMargin = Application.InchesToPoints(0.6) .HeaderMargin = Application.InchesToPoints(0.25) .FooterMargin = Application.InchesToPoints(0.25) End With End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding time in 24 hour format to produce hours in decimal format | Excel Worksheet Functions | |||
Need help with converting CUSTOM format/TEXT format to DATE format | Excel Worksheet Functions | |||
Replace million-billion number format to lakhs-crores format | Excel Discussion (Misc queries) | |||
how to format excel format to text format with separator "|" in s. | New Users to Excel | |||
Keep format after paste from other worksheets - conditional format or EnableControl solution doesn't work | Excel Programming |