If you want the answer to be in a date format and the string is in A
one of the following will work. The date functions parameters are year
month, day so it depends if you are displaying european or america
dates.
=DATE(LEFT(A1,4),RIGHT(A1,2),MID(A1,5,2))
=DATE(LEFT(A1,4),MID(A1,5,2),RIGHT(A1,2))
If you format the date as dd-mmm-yyyy to start with, to check you hav
selected the right formula, then use dd/mm/yyyy or mm/dd/yyyy ar
appropriate
Regards
Da