I need to convert numbers or currency like below to two decimal places. It's not working in the properties either.
I'm getting this:
27.3333333333333
55.0833333333333
null
91.7875
0
8
But I need this:
27.33
55.08
0.00
91.78
0.00
8.00
SELECT Master.rep, Sum([correct total]/12) AS TTl
FROM Master
GROUP BY Master.rep
I'm getting this:
27.3333333333333
55.0833333333333
null
91.7875
0
8
But I need this:
27.33
55.08
0.00
91.78
0.00
8.00
SELECT Master.rep, Sum([correct total]/12) AS TTl
FROM Master
GROUP BY Master.rep