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!Get Fabric certified for FREE! Don't miss your chance! Learn more
Hello,
I want to create a slab wise sales table where the size of the slabs is customizable.
Example – Suppose I have a data table with InvoiceID, Sales Qty, and Free Qty.
I want to create a slab wise sales table where users can change the slab sizes and see the results easily.
Hope I have explained my requirement correctly.
Thanks
Solved! Go to Solution.
@Anonymous , In case you need that at row values
Create a column like this and use it
switch( True()
[sales qty] <10 , " <10",
[sales qty] <100 , " 10 -99 ",
// Add others
)
https://www.daxpatterns.com/static-segmentation/
In case it is on sum(sales qty), then you need to create an independent bucket table and create a measure that falls in the bucket. refer
https://www.daxpatterns.com/dynamic-segmentation/
@Anonymous , In case you need that at row values
Create a column like this and use it
switch( True()
[sales qty] <10 , " <10",
[sales qty] <100 , " 10 -99 ",
// Add others
)
https://www.daxpatterns.com/static-segmentation/
In case it is on sum(sales qty), then you need to create an independent bucket table and create a measure that falls in the bucket. refer
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 68 | |
| 59 | |
| 44 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 104 | |
| 102 | |
| 37 | |
| 26 | |
| 26 |