Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Decimal dimension isn't collapsing in a chart object

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.

2014-01-08 10_09_12-gmavmappdev08 - Remote Desktop.png

1 Solution

Accepted Solutions
Nicole-Smith

You probably want to use round() instead:

round(NGR, .01) AS NGR_DEC2

View solution in original post

1 Reply
Nicole-Smith

You probably want to use round() instead:

round(NGR, .01) AS NGR_DEC2