Aug 22, 2006 #1 onressy Programmer Mar 7, 2006 421 CA hi potential "Date Manipulation Champ", i have time stamp in this format: MM/DD/YYYY Trying to format it like this: YYYY-MM-DD Having no luck: varDate = "8/30/2006" Replace(varDate, inStr(Left(varDate "/", 2)&"/"), Right(varDate, 4)&"-") Any suggestions?
hi potential "Date Manipulation Champ", i have time stamp in this format: MM/DD/YYYY Trying to format it like this: YYYY-MM-DD Having no luck: varDate = "8/30/2006" Replace(varDate, inStr(Left(varDate "/", 2)&"/"), Right(varDate, 4)&"-") Any suggestions?
Aug 22, 2006 1 #2 ChrisHirst IS-IT--Management Nov 23, 2001 8,049 GB new_date = year(varDate) & "/" & month(varDate) & "/" & day(varDate) Chris. Indifference will be the downfall of mankind, but who cares? Woo Hoo! the cobblers kids get new shoes. People Counting Systems So long, and thanks for all the fish. Upvote 0 Downvote
new_date = year(varDate) & "/" & month(varDate) & "/" & day(varDate) Chris. Indifference will be the downfall of mankind, but who cares? Woo Hoo! the cobblers kids get new shoes. People Counting Systems So long, and thanks for all the fish.
Aug 22, 2006 Thread starter #3 onressy Programmer Mar 7, 2006 421 CA Thanks "Date Manipulation Champ" Chris Upvote 0 Downvote