Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello,
I have a small problem with a filter
I have 4 tables with relations.
I have created a working measure that I have placed in a matrix visualization.
So far, no problem.
Then, I wanted to see all the vehicles that have a value greater than 12 and it does not work, there are still values less than 12
On the other hand, when I do a conditional formatting, I see the fields of more than 12.
Do you have an idea?
Thank you in advance for your help
Solved! Go to Solution.
Hi @DimD ,
Try to modify the measure as
Test =
var _value=Sum(Journey[Duree_trajet_journee]) + (Sum(Travaux[Valeur])*24)
return IF(_value>=12,_value,BLANK())
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @DimD ,
Try to modify the measure as
Test =
var _value=Sum(Journey[Duree_trajet_journee]) + (Sum(Travaux[Valeur])*24)
return IF(_value>=12,_value,BLANK())
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello @Anonymous ,
Thank you for your reply. It works
Hey @DimD ,
Does the filtering work when your remove the measure?
Could be that there is some logic in your measure that is overriding the filter.
Please review that.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.