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! Request now
Hi Everyone,
I'm working on a report and am trying to create a chart; where the data displayed is filtered. Here's what my data looks like in the visual:
And here's what i'm looking to accomplish:
I tried playing around with some filters, but figured i'd see if anyone knew a more simple way to do this.
Appreciate any help in advance!
Solved! Go to Solution.
Hi @crmart1n_mx ,
Here are the steps you can follow:
1. Create measure.
Flag =
var _avgall=AVERAGEX(ALL('Table'),[AvgAHT])
return
IF(
MAX('Table'[AvgAHT]) >= _avgall,1,0)
2. Place [Flag]in Filters, set is=1, apply filter.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @crmart1n_mx ,
Here are the steps you can follow:
1. Create measure.
Flag =
var _avgall=AVERAGEX(ALL('Table'),[AvgAHT])
return
IF(
MAX('Table'[AvgAHT]) >= _avgall,1,0)
2. Place [Flag]in Filters, set is=1, apply filter.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi,
Share the download link of the PBI file.
@crmart1n_mx , Use this measure as visual level filter
Var _1 = calculare([AHT], allselected())
return
Averagex(filter(Summarize(Fact, Fact[Name], Date[Month]), [AHT]>_1), [AHT])
CHekc in visual level filter, that this is not blank
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.