The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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% |
Solved! Go to Solution.
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.
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.
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.