View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default Convert '6/23/2005' to '062305'

One way:

MsgBox Format(Date, "mmddyy")

In article ,
"Ken Loomis" wrote:

Can anyone suggest a way to convert a date that looks like this:

6/23/2005

to

062305


Thanks in advanced.

Ken