Forum Discussion
Aucesar
3 years agoHelper III
DAX Calculation Help
Hi Community another day, another challenge 🙂
Need to acomplish this calculation...thanks for any help in advance!
| Date | MainWorker | Assistant | TotalItens | DefectoiTens | %Defecto | Desired Result = Sum all % results when the worker is Main or Assistant | %Total |
| day1 | employee1 | employee2 | 100 | 5 | 5% | Employee1 | 10% |
| day1 | employee3 | employee4 | 100 | 10 | 10% | Employee2 | 10% |
| day1 | employee5 | employee6 | 100 | 15 | 15% | Employee3 | 30% |
| day1 | employee7 | employee8 | 100 | 0 | 0% | Employee4 | 35% |
| day2 | employee2 | employee3 | 100 | 5 | 5% | Employee5 | 35% |
| day2 | employee4 | employee5 | 100 | 10 | 10% | Employee6 | 35% |
| day2 | employee6 | employee7 | 100 | 15 | 15% | Employee7 | 25% |
| day2 | employee8 | employee1 | 100 | 0 | 0% | Employee8 | 0% |
| day3 | employee6 | employee1 | 100 | 5 | 5% | ||
| day3 | employee7 | employee5 | 100 | 10 | 10% | ||
| day3 | employee3 | employee4 | 100 | 15 | 15% | ||
| day3 | employee2 | employee8 | 100 | 0 | 0% |
Calculation = var helperTable = UNION( SELECTCOLUMNS(ALL('Table'), "workers", 'Table'[MainWorker], "defecto", 'Table'[%Defecto]), SELECTCOLUMNS(ALL('Table'), "workers", 'Table'[Assistant], "defecto", 'Table'[%Defecto]) ) return SUMX(FILTER(helperTable, [workers] = SELECTEDVALUE('Table'[MainWorker])), [defecto])Hope this helps.
3 Replies
- vicky_Super User
Calculation = var helperTable = UNION( SELECTCOLUMNS(ALL('Table'), "workers", 'Table'[MainWorker], "defecto", 'Table'[%Defecto]), SELECTCOLUMNS(ALL('Table'), "workers", 'Table'[Assistant], "defecto", 'Table'[%Defecto]) ) return SUMX(FILTER(helperTable, [workers] = SELECTEDVALUE('Table'[MainWorker])), [defecto])Hope this helps.
- Ashish_MathurSuper User
Hi,
In the Query Editor, select all columns other than Main Worked and Assistant, right click and select Unpivot Other columns. Rename the Atribute column as Employees. Drag the Employees column to the visual and write this measure
Measure = sum(Data[%Defecto])
Hope this helps.