Jun 30, 2002 #1 mtomar Programmer Jun 24, 2002 10 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
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
Jun 30, 2002 #2 raskew Programmer Oct 18, 2000 488 Try the CInt() function and see if that meets your needs. Example: x = 4.33 ? CInt(x) 4 x = 4.83 ? CInt(x) 5 Upvote 0 Downvote
Try the CInt() function and see if that meets your needs. Example: x = 4.33 ? CInt(x) 4 x = 4.83 ? CInt(x) 5