Skip to main content

Look at the picture please

From the looks of this you are trying to group everything form 0-99, 100-199, 200-299, etc.

 

Use an AttributeRounder with a rounding of -2 and set it to round down. That will take each grouping to its base value. So, 91 becomes 0, 453 becomes 400, etc. Then you can group by that value.


Reply