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 everybody, i would like to filter on a table using a nested filter. here is my exemple :
i would like to remove the "ccube osgroup.name" = "Sans OS indiqué" and "type" <> 50 and keep all the rest.
i tried this in dax but it didn't work :
Thank you in advance for your answers,
Solved! Go to Solution.
@Anonymous , Try like
obs = CALCULATETABLE (
obsolescences, filter(obsolescences, not(obsolescences[ccube osgroup.name] = "Sans OS indiqué" && obsolescences[type] <> 50))
)
@Anonymous , Try like
obs = CALCULATETABLE (
obsolescences, filter(obsolescences, not(obsolescences[ccube osgroup.name] = "Sans OS indiqué" && obsolescences[type] <> 50))
)
yes it work thank you very much