Hello
I am trying to destring a number of daily dates using

Code:
gen time= date(days, "DMY")
format time %td
It displays that missing values generated but the results turns to be empty or missing value, What am I doing wrong on this?

Code:
* Example generated by -dataex-. To install: ssc install dataex
clear
input str7 days float(increase time)
"1/1/93"  .1217 .
"4/1/93"  .1218 .
"5/1/93"  .1214 .
"6/1/93"  .1226 .
"7/1/93"  .1226 .
"8/1/93"  .1247 .
"11/1/93" .1249 .
"12/1/93" .1246 .
"13/1/93" .1248 .
"14/1/93" .1249 .
"15/1/93" .1256 .
"18/1/93" .1253 .
"19/1/93" .1251 .
"20/1/93" .1248 .
"21/1/93" .1244 .
"22/1/93" .1242 .
"25/1/93" .1238 .
"26/1/93" .1236 .
"27/1/93" .1233 .
"28/1/93" .1231 .
"29/1/93" .1227 .
end
format %td time