|
Question : How to convert a decimal value to 1 correct figure in an access query
|
|
How to convert a decimal value to 1 correct figure in an access query
For example: = or > 1.3 to be converted to 2 And < 1.3 to be converted to 1
|
|
Answer : How to convert a decimal value to 1 correct figure in an access query
|
|
try this
round(x + .2)
|
|
|
|