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 @ all,
I would like to calculate the following: "Workload Person/Activity"
Person Activity Workload Workload Person/Activity
A | 1 | 50% | 70% |
A | 1 | 20% | 70% |
A | 2 | 30% | 30% |
B | 1 | 10% | 20% |
B | 1 | 10% | 20% |
B | 2 | 80% | 80% |
This should be a simple DAX formula but I just can't figure it out 🙂
Solved! Go to Solution.
new column = sumx(filter(TableName;earlier([Person])=[Person]&&earlier([Activity])=[Activity]);[Workload])
try this
new column = sumx(filter(TableName;earlier([Person])=[Person]&&earlier([Activity])=[Activity]);[Workload])
try this
works perfectly, thanks!