Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I would like to add the time to the file name along with the date that I currently have in the file name. I currently have the date in the code below in bold. How can I add the current time as well? ActiveWorkbook.SaveAs Filename:="C:\SOS Data\Compiled Data\SOS Data - " *& Format(Date, "mm-dd-yyyy") &* ".xls" Thanks ya'll!!! -- rglasunow ------------------------------------------------------------------------ rglasunow's Profile: http://www.excelforum.com/member.php...fo&userid=4212 View this thread: http://www.excelforum.com/showthread...hreadid=385436 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try:
Format(Date, "mm-dd-yyyy hhmmss") -- Damon Longworth Don't miss out on the 2005 Excel User Conference Sept 16th and 17th Stockyards Hotel - Ft. Worth, Texas www.ExcelUserConference.com "rglasunow" wrote in message ... I would like to add the time to the file name along with the date that I currently have in the file name. I currently have the date in the code below in bold. How can I add the current time as well? ActiveWorkbook.SaveAs Filename:="C:\SOS Data\Compiled Data\SOS Data - " *& Format(Date, "mm-dd-yyyy") &* ".xls" Thanks ya'll!!! -- rglasunow ------------------------------------------------------------------------ rglasunow's Profile: http://www.excelforum.com/member.php...fo&userid=4212 View this thread: http://www.excelforum.com/showthread...hreadid=385436 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Unfortunately that did not work. The only thing it did was add 6 zero after the date. I also tried hh:mm:ss and that didn't work either. Any other suggestions in putting the current time into the file name? thanks again -- rglasuno ----------------------------------------------------------------------- rglasunow's Profile: http://www.excelforum.com/member.php...nfo&userid=421 View this thread: http://www.excelforum.com/showthread.php?threadid=38543 |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Instead of date use Now. Code ------------------- Format(Now, "mm-dd-yyyy hhmmss" ------------------- -- Nori ----------------------------------------------------------------------- Norie's Profile: http://www.excelforum.com/member.php...fo&userid=1936 View this thread: http://www.excelforum.com/showthread.php?threadid=38543 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Putting consecutive time in cells | Excel Discussion (Misc queries) | |||
Putting Excel formatting and/or formulas into CSV file | Excel Discussion (Misc queries) | |||
Putting a formula in place one time for the entire spreadsheet | Excel Programming | |||
putting file name within spreadsheet | Excel Discussion (Misc queries) | |||
putting date and time together in 1 cell | Excel Discussion (Misc queries) |