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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need help. Can someone help me with this topic. I need to trunacate a
decimal with the integer function.
 
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])
 
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])
 
Back
Top