K
Kevin Sprinkel
If you want the query to select neither value:
round([BTUH])<65000
To select both values,
round([BTUH])<=65000,
or, alternatively, truncate any fractional part, by:
int([BTUH])<65000
Kevin Sprinkel
picked up. However, when I have a record that is 64999.8,
it is. I've tried both data types single and double, but
neither corrects the problem. I'm not aware of a rounding
function that I can use in Access SQL. How can I get the
query to return the record having BTUH of 64999.9? Thanks
in advance.
round([BTUH])<65000
To select both values,
round([BTUH])<=65000,
or, alternatively, truncate any fractional part, by:
int([BTUH])<65000
Kevin Sprinkel
BTUH. When I have a record that is 64999.9, it isn't-----Original Message-----
My query criteria is supposed to return records of <65000
picked up. However, when I have a record that is 64999.8,
it is. I've tried both data types single and double, but
neither corrects the problem. I'm not aware of a rounding
function that I can use in Access SQL. How can I get the
query to return the record having BTUH of 64999.9? Thanks
in advance.