Forum Discussion
DAX Formula
- 1 year ago
coetseem First, calculate the total count per team for the selected month and year:
DAX
Total Count by Team =
CALCULATE(
SUM('Step 1 - Approval'[Count]),
ALLEXCEPT('Step 1 - Approval', 'Step 1 - Approval'[Team], 'Step 1 - Approval'[Month])
)Then, calculate the percentage contribution of each user per team:
DAX
% Contribution by User =
DIVIDE(
SUM('Step 1 - Approval'[Count]),
[Total Count by Team],
0
)
coetseem First, calculate the total count per team for the selected month and year:
DAX
Total Count by Team =
CALCULATE(
SUM('Step 1 - Approval'[Count]),
ALLEXCEPT('Step 1 - Approval', 'Step 1 - Approval'[Team], 'Step 1 - Approval'[Month])
)
Then, calculate the percentage contribution of each user per team:
DAX
% Contribution by User =
DIVIDE(
SUM('Step 1 - Approval'[Count]),
[Total Count by Team],
0
)
- coetseem1 year agoFrequent Visitor
Thank you, it worked.