G Guest Nov 2, 2005 #1 Hello! My task is to round all up: 2.1=3 2.2=3 .... 2.9=3 Is it possible to do in a query? Thank you!
Hello! My task is to round all up: 2.1=3 2.2=3 .... 2.9=3 Is it possible to do in a query? Thank you!
G Guest Nov 2, 2005 #4 That works if the Fieldname has a decimal but does not work for whole numbers. 2.1 will round to 3 but 2.0 will also round to 3
That works if the Fieldname has a decimal but does not work for whole numbers. 2.1 will round to 3 but 2.0 will also round to 3
G Guest Nov 2, 2005 #5 You right, thank you for that. -- Dennis said: That works if the Fieldname has a decimal but does not work for whole numbers. 2.1 will round to 3 but 2.0 will also round to 3 Click to expand...
You right, thank you for that. -- Dennis said: That works if the Fieldname has a decimal but does not work for whole numbers. 2.1 will round to 3 but 2.0 will also round to 3 Click to expand...
J James A. Fortune Nov 2, 2005 #6 Beatrix said: Hello! My task is to round all up: 2.1=3 2.2=3 ... 2.9=3 Is it possible to do in a query? Thank you! Click to expand... SELECT Int([X]) + Abs([X] <> Int([X])) AS XRoundedUp FROM MyTable; James A. Fortune
Beatrix said: Hello! My task is to round all up: 2.1=3 2.2=3 ... 2.9=3 Is it possible to do in a query? Thank you! Click to expand... SELECT Int([X]) + Abs([X] <> Int([X])) AS XRoundedUp FROM MyTable; James A. Fortune