The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.