Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Roundation Function

Status
Not open for further replies.

mtomar

Programmer
Jun 24, 2002
10
0
0
US

Hi,

After created query or access report, I want a good function to round figure in calculated field x*y/z

I used function "round", but did not give me exact amount.

Thanks.

mtomar@msn.com
 
Try the CInt() function and see if that meets your needs.

Example:
x = 4.33
? CInt(x)
4

x = 4.83
? CInt(x)
5
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top