Within a query, I want to turn a number(with decimals) into an integer (no decimal places...truncated, not rounded) AND I want the number format to include commas. When I do this:
format(int(1000.5),"standard")
I get 1,000.00
I want 1,000
And I need to keep the data as a number, as I'm doing calculations on it in a report. Any way to stay in a number data type, AND remove the .00?
format(int(1000.5),"standard")
I get 1,000.00
I want 1,000
And I need to keep the data as a number, as I'm doing calculations on it in a report. Any way to stay in a number data type, AND remove the .00?