Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
I would like to take shipment weights and break them down into weight ranges (ex. 0 - 5, 5 -10, 10-20, etc). I tried the Groups function, but I would have to update that everytime my data was refreshed with new data due to new shipment weights being added. Is there a recommended formula that could be used that would allow the shipment weight to be grouped into these weight ranges i provided earlier and update as my data is refreshed? Thanks.
Hi @cheid1977,
Have you tried the solution provided above? Does it work in your scenario? If the solution works, could you accept it as solution to close this thread?
If you still have any question on this issue, feel free to post here. ![]()
Regards
Thanks for the recommendation. I have had a chance to test it out. As soon as I do I will let you know if it works.
I would just add a calculated column "Weight Bucket". There are a few ways to do this (eg, you could have a separate table that controls the buckets and lookup into it) or whatever, that has the formula (something like)
Bucket = SWITCH( TRUE(),
[Weight] <= 5, "0-5",
[Weight] <= 10, "5-10",
...
[Weight] <= 100, "80-100",
"Real Heavy"
)
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 42 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 62 | |
| 31 | |
| 26 | |
| 25 |