Predefine Decimal Places In Query Statment

joesmithf1

Registered User.
Local time
Today, 05:16
Joined
Oct 5, 2006
Messages
56
Anyone knows if I can predefine decimal places in a query statement? For example, when I run the select query below, I want the MedicalPremAmt to have two digits after the "." It should look something like this: 12.38

Thank you.


SQL = "Select [Barg Unit], First([Medical Option]) As Carrier, First([Medical Coverage Tier]) As Tier, Sum([Medical Premium Amount]) As MedicalPremAmt,Sum([Total Grant]) As TotalGrant,Sum([Health Allocation]) As HealthAllocation,sum([Medicare Allocation]) As MedicareAllocation FROM RetireeCensus Group By [" & Category & "];"
 
use the round option: round(sum([your field]),2) for 2 decimal places
 

Users who are viewing this thread

Back
Top Bottom