Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
My dimension is formed with
NUM(NGR,'###########,###.00') AS NGR_DEC2
My expression is
COUNT(PRIMARY_KEY)
The problem is that it's not collapsing NGR_DEC2 (group by). See screenshot.
You probably want to use round() instead:
round(NGR, .01) AS NGR_DEC2