| Well if its number formatted you have a problem. You need to convert it to a string. What happens if the date is single digits for month and day? You will have a problem converting 881998 (Aug 8 1998) and 1052000 (Oct 5 2000) if the dates are not formatted mmddyyyy. The latter sample could be Oct 5 or Jan 5.
IF the formatt was mmddyyyy, then you would use the DateValue() function like this:
=Date(Value(Right(string,4)), Value(Left(string,2)), Value(Mid(3,2,string))) |