Thread: Date Format
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Rawce Rawce is offline
external usenet poster
 
Posts: 30
Default Date Format

jobdate = Month(Jobdate) & "-" & Day(Jobdate) & "-" & Year(Jobdate)

Try the following instead:

jobdate = Format(jobdate, "mm-dd-yy")