Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi!
I have created a bar chart that shows top 5 and bottom 5 of this month vs. last month value. This shows the greatest drivers of change (either positive or negatve) vs. last month.
The measures used are:
So I therefore get the top 5 and bottom 5 of change vs. last month for category L3 products
Okay, so here is the question.
I now want to put in a drilldown into the same chart. The chart has told me what the greatest driver of change is at Level 3, so I want to drill further into that area, from Level 3 categorisation into, e.g., a Level 5 categorisation. (example, level 3 might be "clothes" and level 5 might be "socks", "shirts" & "hats")
But every time I try to create this I end up with the chart expanding to show all the categories, not just the top and bottom 5. example:
I've tried creating the same filter for L5, and applying the same "is not 0", but it doesn't behave like I expected
What is the behaviour of the chart and how can I fix it?
Hi @dapperscavenger ,
You may change measure [RankL3MoMMarket] like DAX below.
RankL3MoMMarket =
IF (
HASONEVALUE ( [Level 5 categorisation] ),
[MoM Market],
IF (
OR ( [Rank MoM Market L3 Bottom] < 6, [Rank MoM Market L3 Top] < 6 ),
[MoM Market],
0
)
)
Best Regards,
Amy
Community Support Team _ Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
ah, that did not work. I've been googling around and I think I have asked for the impossible. PowerBI does not seem to have this functionality.
So I will find another way to try to represent the data
Thank you!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.