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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hai All I want to unfilter two columns (red marked) But unfortunately, I am getting errors. please help me
Solved! Go to Solution.
Hi:
I think youshould do two measures, so you can see the application.
A base measure. Certified% = DIVIDE([Active-User Head Count],[Active User Head count])
Certified Demo = CALCULATE[Certfied%], Filter('Activity Log', 'Activity Log'[Initiative Type] = "Best Practice Roll Out" || 'Activity Log'[Initiative Type] = "Sprint")
)
I don't think you need ALLEXCEPT for Year as the year should filter. In case you do then
Certified Demo II = CALCULATE[Certfied%], Filter('Activity Log', 'Activity Log'[Initiative Type] = "Best Practice Roll Out" || 'Activity Log'[Initiative Type] = "Sprint"), ALLEXCEPT(Calendar,Calendar[Year])))
I hope this works as a solution for you..
Hi:
I think youshould do two measures, so you can see the application.
A base measure. Certified% = DIVIDE([Active-User Head Count],[Active User Head count])
Certified Demo = CALCULATE[Certfied%], Filter('Activity Log', 'Activity Log'[Initiative Type] = "Best Practice Roll Out" || 'Activity Log'[Initiative Type] = "Sprint")
)
I don't think you need ALLEXCEPT for Year as the year should filter. In case you do then
Certified Demo II = CALCULATE[Certfied%], Filter('Activity Log', 'Activity Log'[Initiative Type] = "Best Practice Roll Out" || 'Activity Log'[Initiative Type] = "Sprint"), ALLEXCEPT(Calendar,Calendar[Year])))
I hope this works as a solution for you..
Hi:
Your are close. Everything looks good on second line up to ...[Year]), ALLEXCEPT('Activity log', 'Activity log'[Initiative Type]). I'm highlighting the code to replace where you have && ..
So just change the last part of the measure and not use && ALL........
If this works for you can you accept as solution? Thanks
I am getting this kind of error. Any solution ?