Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.