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
Hello,
I would like to ask why filtering not working in my calculations? I used this measure:
It was not in {"Skola tiekeju"} but I still see skola tiekjui values in visual. Why it happens?
_Gauta, EUR =
CALCULATE(
[__Lik_Suma]
,FILTER(
_APV,
(CONTAINSSTRING([apyvarta.operacija],"Pajamavimas") && not [apyvarta.operacija] in {"Turto pajamavimas"} && [apyvarta.operacija] not in {"Skola tiekėjui"})
|| CONTAINSSTRING([apyvarta.operacija],"Gauta")
|| CONTAINSSTRING([apyvarta.operacija],"Pradinis")
)
)Hello,
Why I still getting included if I filtered not in ("skola tiekejui"). I use not in. But still it is in visual. How to resolve this?
Since you are using || {OR} operater in your filter context. therefore your condition getting True for {"Skola tiekeju"} in values of Operacija .
Proud to be a Super User!
So how to fix it because I need to exclude some data?
try Use not in expression of {"Skola tiekeju"} with both || conditions
||( Operacija && not in {"Skola tiekeju"})
||( Operacija && not in {"Skola tiekeju"})
Proud to be a Super User!
Error:
How to resolve this?
sorry it was a typo
can you please add same condition with your next two filter expression of Operacija
Proud to be a Super User!
can you please write you DAX code in text format here,
Proud to be a Super User!
_Gauta, EUR =
CALCULATE(
[__Lik_Suma]
,FILTER(
_APV,
(CONTAINSSTRING([apyvarta.operacija],"Pajamavimas") && not [apyvarta.operacija] in {"Turto pajamavimas"} || not [apyvarta.operacija] in {"Skola tiekėjui"} )
|| CONTAINSSTRING([apyvarta.operacija],"Gauta")
|| CONTAINSSTRING([apyvarta.operacija],"Pradinis")
)
)This also not works for me.
_Gauta, EUR =
CALCULATE(
[__Lik_Suma]
,FILTER(
_APV,
(CONTAINSSTRING([apyvarta.operacija],"Pajamavimas") && not [apyvarta.operacija] in {"Turto pajamavimas"} && [apyvarta.operacija] not in {"Skola tiekėjui"})
|| CONTAINSSTRING([apyvarta.operacija],"Gauta")
|| CONTAINSSTRING([apyvarta.operacija],"Pradinis")
)
)
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.