Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Customizable slab wise data

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

Capture.PNG

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@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/

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@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/

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.