Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
'example: "home_4_30_2010_2:45:00 pm.xls"
sFileName = "home_" & Format(Now, "d_m_yyyy_h:nn:ss am/pm") & ".xls"
Skip,
[sub]
[glasses]Just traded in my old subtlety...
[b]for a NUANCE![/b][tongue][/sub]
Dim sFileName as string
sFileName = Format(Now(), "mm_dd_yyyy_hh_mm_AM/PM")
' NOW it will work
ActiveWorkbook.SaveAs "C:\test\" & sFileName & ".xls"