Converting TEXT to Date format

  • Thread starter Thread starter SarahN
  • Start date Start date
S

SarahN

Ok so I have dates that have been written in as
Wednesday, 3 May 2009 not in 03/03/2009 format. Is there anyway of getting excel to recognise this as a date. I have tried to format as a date. (I am trying to use Date FIlters)

Thanks in advance
 
Try the below formula

=DATEVALUE(MID(A1,FIND(",",A1)+1,20))

OR try Data>Text to columns with "," delimiter
 
Back
Top