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

Dynamic Grouping of Category

Need help with Dynamic Grouping

Consider that there are different categories –

  • Extra Small
  • Small
  • Medium
  • Large
  • Extra Large

 

I have a checkbox where one can select the categories. –

If user selects Extra small and small, rest categories should be grouped to other.

 

weicaomis123_0-1618581588766.png

 

Can someone help me to write DAX for dynamic grouping?

Thank you in advance.

 

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@Anonymous , If it based on another column, you can create a new column, using Switch 

https://www.daxpatterns.com/static-segmentation/

 

If you need on the measure you need to binning or segmentation

refer video: https://youtu.be/CuczXPj0N-k

 

https://www.daxpatterns.com/dynamic-segmentation/
https://radacad.com/grouping-and-binning-step-towards-better-data-visualization

View solution in original post

Jihwan_Kim
Super User
Super User

Hi, @Anonymous 

Please check the below picture and the sample pbix file's link down below, whether it is what you are looking for.

 

all measures are in the sample pbix file.

 

Picture1.png

 

Picture2.png

 

Qty Total by Choice =
VAR choice =
ALLSELECTED ( Categories[Category] )
VAR currentseries =
MAX ( Data[Series] )
VAR alltable =
SUMMARIZE ( ALL ( Data ), Data[Category], Data[Series] )
VAR choicetable =
FILTER ( alltable, Data[Category] IN choice )
VAR nochoicetable =
FILTER (
ADDCOLUMNS ( EXCEPT ( alltable, choicetable ), "@qty", [Qty total] ),
Data[Series] = currentseries
)
RETURN
IF (
SELECTEDVALUE ( Data[Category]) = "_Others",
SUMX ( nochoicetable, [@qty] ),
IF ( SELECTEDVALUE ( Data[Category] ) IN choice, [Qty total], BLANK () )
)
 
 
 
 

Hi, My name is Jihwan Kim.

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

Linkedin: https://www.linkedin.com/in/jihwankim1975/

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi, @Anonymous 

Please check the below picture and the sample pbix file's link down below, whether it is what you are looking for.

 

all measures are in the sample pbix file.

 

Picture1.png

 

Picture2.png

 

Qty Total by Choice =
VAR choice =
ALLSELECTED ( Categories[Category] )
VAR currentseries =
MAX ( Data[Series] )
VAR alltable =
SUMMARIZE ( ALL ( Data ), Data[Category], Data[Series] )
VAR choicetable =
FILTER ( alltable, Data[Category] IN choice )
VAR nochoicetable =
FILTER (
ADDCOLUMNS ( EXCEPT ( alltable, choicetable ), "@qty", [Qty total] ),
Data[Series] = currentseries
)
RETURN
IF (
SELECTEDVALUE ( Data[Category]) = "_Others",
SUMX ( nochoicetable, [@qty] ),
IF ( SELECTEDVALUE ( Data[Category] ) IN choice, [Qty total], BLANK () )
)
 
 
 
 

Hi, My name is Jihwan Kim.

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

Linkedin: https://www.linkedin.com/in/jihwankim1975/

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


amitchandak
Super User
Super User

@Anonymous , If it based on another column, you can create a new column, using Switch 

https://www.daxpatterns.com/static-segmentation/

 

If you need on the measure you need to binning or segmentation

refer video: https://youtu.be/CuczXPj0N-k

 

https://www.daxpatterns.com/dynamic-segmentation/
https://radacad.com/grouping-and-binning-step-towards-better-data-visualization

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.