Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: mgajdosikuse double(FieldName) instead of int(FieldName). LAE has 3 numeric data types:
int - Integers - only whole numbers without decimal point
(from - to + 2,147,483,647)
long -Long Integers - same as integer but allows higher/lower values
(from - to + 9,223,372,036,854,775,808)
double - no limitations to size, but precision may be tricky, used for decimals/floating point numbers
Marek