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
viewSonic123
Frequent Visitor

Grouping records dynamically in matrix visual

Hi!

I'm trying to create a matrix that uses a measure that changes with a date slicer selection. Currently, I only have the matrix grouped by whatever the table calculated for the day. I want to get the matrix grouped by the date slicer selection.

 

Ex. 
These are the groups I'm trying to group under:
0-5 units

6-10 units

11+ units


These groups are the sums of the individual accounts. For example, an account can have multiple records; the sum will equal 25 units and therefore be grouped as 20-29 units. The table below shows an example of the data I'm using.

AccountUnitsCostDate
11101/1
23301/4
14701/6
12201/10
251001/15
1105001/26

 

Currently, if the user selects a slicer date of 1/11, they will get these results:

GroupAccountUnitsCost
0-5 units   
 2330
6-10 units   
11+ units   
 17100

 

But the result needs to look like this:

GroupAccountUnitsCost
0-5 units   
 2330
6-10 units   
 17100
11+ units   

 

The difference: Account 1 is grouped under 11+ units when it should be grouped under 6-10 units. The unit and cost metrics are measures that I'm using. The account is under the 'Group' row and can be drilled down on.

 

I'm thinking this is a case of grouping accounts dynamically. The problem is I don't know how that can be done. I've tried multiple solutions and can not figure it out.

 

Any help would be greatly appreciated! Thanks! 

2 REPLIES 2
amitchandak
Super User
Super User

@viewSonic123 , if unit is sum of unit or a measure then you need

 

then you need

 


Dynamic Segmentation Bucketing Binning
https://community.powerbi.com/t5/Quick-Measures-Gallery/Dynamic-Segmentation-Bucketing-Binning/m-p/1...


Dynamic Segmentation, Bucketing or Binning: https://youtu.be/CuczXPj0N-k

 

 

Else you can use a switch

a new column

= Switch(true() ,

[Unit]<5, "  0-5",

[Unit]<10, " 5-10",

// add other

"More than 10" )

 

 

Will try these out and let you know. Thanks!

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.

Top Solution Authors