View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Incidental Incidental is offline
external usenet poster
 
Posts: 226
Default Problems with date format when reading external excel sheet

Hi There

You could try using cdate rather than formatting the date i.e.

..cells(ml_TARGET_ROW, 10).Value = CDate (rs_SOURCE("Period end"))
'where the data in the parenthesis is your date

Hope this helps

Steve