aspnetuser
Technical User
I am using the following formula to convert a sql server 2000 database field to a date.
Numbervar TheYear:= ToNumber({check_date}[1 to 4]);
Numbervar TheMonth:= ToNumber({check_date}[5 to 6]);
Numbervar TheDay:= ToNumber({check_date}[7 to 8]);
Date(TheYear,TheMonth,TheDay)
The error I get is show below.
The string is non-numeric.
I looked in the database and their are some null fields if that will help solve this?
Please, any suggestions???
Numbervar TheYear:= ToNumber({check_date}[1 to 4]);
Numbervar TheMonth:= ToNumber({check_date}[5 to 6]);
Numbervar TheDay:= ToNumber({check_date}[7 to 8]);
Date(TheYear,TheMonth,TheDay)
The error I get is show below.
The string is non-numeric.
I looked in the database and their are some null fields if that will help solve this?
Please, any suggestions???