how do you find and use the integer function in Access?

J

jda

I need help. Can someone help me with this topic. I need to trunacate a
decimal with the integer function.
 
P

Phil

jda said:
I need help. Can someone help me with this topic. I need to trunacate a
decimal with the integer function.
If your field is [Iamdecimal], just use Int([Iamdecimal]) or
Cint([Iamdecimal])
 
T

Tom Ellison

Or, if the values are really large, CLng().

Tom Ellison


Phil said:
jda said:
I need help. Can someone help me with this topic. I need to trunacate a
decimal with the integer function.
If your field is [Iamdecimal], just use Int([Iamdecimal]) or
Cint([Iamdecimal])
 
Top