I wrote a query to convert a double data type to an integer on the fly (In the Field area I call: (Expr1: dti(APPLICANT)))
here is the VBA:
Public Function dti(intExp)
Dim newInt, id
id = intExp
newInt = CInt(intExp)
dti = newInt
Return
End Function
I keep getting an overflow error when I preview the query results.
Should I convert the double in a seperate query? I can't believe that I can't convert a double to an integer. The double number is- 20060312673. Is that too big?
Thanks,
Jesse
here is the VBA:
Public Function dti(intExp)
Dim newInt, id
id = intExp
newInt = CInt(intExp)
dti = newInt
Return
End Function
I keep getting an overflow error when I preview the query results.
Should I convert the double in a seperate query? I can't believe that I can't convert a double to an integer. The double number is- 20060312673. Is that too big?
Thanks,
Jesse