Hi,
I have a string field in my database to store date. the date format is dd/mm/yy (31/05/03).
I have problem to convert the string to date type.
I tried to use cdate function, but it will change the date format to 03/05/31.
I also tried to use below formula :
cdate(val(mid ({attendance.trdate},1,2)),
val(mid({attendance.trdate},3,2)),
val(mid({attendance.trdate},5,2)))
which I get the result 31/05/3..... I don't know why the year become 3 not 03....
Pls help.....
I have a string field in my database to store date. the date format is dd/mm/yy (31/05/03).
I have problem to convert the string to date type.
I tried to use cdate function, but it will change the date format to 03/05/31.
I also tried to use below formula :
cdate(val(mid ({attendance.trdate},1,2)),
val(mid({attendance.trdate},3,2)),
val(mid({attendance.trdate},5,2)))
which I get the result 31/05/3..... I don't know why the year become 3 not 03....
Pls help.....