Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi Everyone
Challenge: I created a stacked column chart visualizing monthly order counts by city. Each column represents total orders for a month, broken down by individual cities in the legend. However, there are numerous cities with order counts consistently below 5 per month.
Goal: I want to group these low-volume cities (order count < 5) under a single category named "Others" in the chart legend. This should be dynamic and adapt to any slicer selections applied to the report.
Additional Context: The chart displays data on a monthly basis with order counts on the y-axis and months on the x-axis. The legend currently shows individual city names.
I would appreciate any help!
Thank you!
Rashid Anwar
Solved! Go to Solution.
Hi @rashidanwar ,
Below is my table:
The following DAX might work for you:
City1 = IF('Table'[Data] < 5,"Other",'Table'[City])
The final output is shown in the following figure:
Best Regards,
Xianda Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @rashidanwar ,
Below is my table:
The following DAX might work for you:
City1 = IF('Table'[Data] < 5,"Other",'Table'[City])
The final output is shown in the following figure:
Best Regards,
Xianda Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
146 | |
75 | |
64 | |
52 | |
47 |
User | Count |
---|---|
218 | |
88 | |
73 | |
64 | |
60 |