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...
I am trying to build a report from 4 different tables. They all have the same fields, but they are 4 different "years". (yeah- I know- I didnt design it) There are ID's associated with different dollar amounts.
What I need is a report that shows the ID's with each "years" data per line...
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.