I tried the IsDate to check if the string argument can be converted to a date - the result came back True.
When I tried the Date it gave me an error message Bad Date Format String.
I have a date field (4/8/2010 M/D/YYYY) that is in a string. I need to converet it into a date field. I have tried the following:
StringVar DT := {Prt.Prt_Registration_Date};
NumberVar YR := Val (Split (DT , '/')[3]);
if YR < 50 then YR := YR + 2000 else
if YR < 1000 then YR := YR + 1900...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.