Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi,
I have what I thought would be a simple request.
I need to create a new field that groups the calculated measure "Limit Amount Our Share" in to various items.
The original data contains something like the below:
I created a summary of the above (just taking out the middle column):
Based on the "Prog/Pol Ref" attribute I wanted to create groupings.
Initially I thought I would create an if statement like the below:
However I get the results below, that base the groupings including Policy Reference
The results I wanted was something like the below (Sorry about the red scribble, first two items 9 - 9.99m, last one 4 - 4.99m):
Any help will be very much appriciated.
Thanks
Jason
Solved! Go to Solution.
You need to add a measure instead.
Measure =
VAR q =
QUOTIENT ( SUM ( Table1[Limit Amount Our Share] ), 1000000 )
RETURN
IF ( q < 10, q & " - " & q & ".99m", "10m +" )
You need to add a measure instead.
Measure =
VAR q =
QUOTIENT ( SUM ( Table1[Limit Amount Our Share] ), 1000000 )
RETURN
IF ( q < 10, q & " - " & q & ".99m", "10m +" )
How exactly are you getting to the second image you see? Is it just the output of a visual? I'm guessing that the new column you're making is applying things on a row by row basis, which won't recognise that things will be summed in a later step.
I'd try to look to group your data in Power Query by your project reference and have it sum up the limit amount in the same process, your measure to group the values should then work as everything is in one row
The first & second images are just outputs from the visual.
Yes the new column is on a row by bow basis.
I did look at the group by in the query, but it errored the whole table.
I will revisit it.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 64 | |
| 51 | |
| 46 | |
| 23 | |
| 19 |
| User | Count |
|---|---|
| 136 | |
| 110 | |
| 50 | |
| 32 | |
| 29 |