Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi,
I want to calculate group average training duration that count total per group not per position.
I try use ALLEXCEPT Dax but not work
Solved! Go to Solution.
@laurent_rio , if you want other filters to work
Group Average Duration/Staff = CALCULATE([Duration],filter(allselected(Course_Completion_Listing),Course_Completion_Listing[BU] =max(Course_Completion_Listing[BU]) ))
Yes it works !!! Super Thanks
Hi it seems my DAX not work if i have filter. My filter is Business unit ,
using the formula
@laurent_rio , if you want other filters to work
Group Average Duration/Staff = CALCULATE([Duration],filter(allselected(Course_Completion_Listing),Course_Completion_Listing[BU] =max(Course_Completion_Listing[BU]) ))
Hi @amitchandak
Now the questions if the filter have all selection, it seems this DAX
Group Average Duration/Staff = CALCULATE([Duration],filter(allselected(Course_Completion_Listing),Course_Completion_Listing[BU] =max(Course_Completion_Listing[BU]) ))
Not give expected result
Here for example if i choose 1 BU, the result is OK
But if i choose all BU or multiple BU Selection, i expect the group will show same total average hour/staff
Can you help to modify the DAX so it work for all or multiple BU Selection ?
@laurent_rio , Allexpect will allow that filter to pass, means job Grade filter iwll pass
Try like
Group Average Duration/Staff = CALCULATE([Average Duration/Staff],ALL('Job Grade'[Job Grade]))
or
Group Average Duration/Staff = CALCULATE([Average Duration/Staff],ALLselected ('Job Grade'[Job Grade]))
Group Average Duration/Staff = CALCULATE([Average Duration/Staff],removefilters('Job Grade'[Job Grade]))