I have this line of query here
if (type = 1,
(IF(ISNULL(users),
'',
((SUM(actual) / 1) * 0.04/12) * if(users = "user", booked/(36/12),'')
))
,
'false')
the example output is 123.3333333
I want it to output just 2 decimals so it'll be like 123.33
where should I place the Truncate or Round command?
Thank You!