Keith the below expression, there is a limit on how many rows it can convert
to long Integer. Is there another way to extent to great then the number
below?
There is no limit on the number of *rows*.
test: CLNG([FieldName])
only convert text to numbers up until 900099999
There is a limit on the size of the number. A Long Integer (the output of
CLng) is a 32 bit signed integer with a valid range of values from -2147483648
through 2147483647. 900099999 is well within this range:
?clng("900099999")
900099999
?clng("2147483647")
2147483647
?clng("2147483648")
<generates an overflow error>
Originally, you were using CInt(), which generates a small (16 bit) integer,
which is limited to the range -65536 to 65535.
Could you explain the nature of the data, the range of values you're using,
and just what you are trying to accomplish?