Forum Discussion
rashidanwar
Advocate II
2 years agoDynamic Categorization Based on Value in a Stacked Column Chart
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....
- Anonymous2 years ago
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.
Anonymous
2 years agoNot applicable
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.