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! Request now
Hello,
Im trying to sum _TotalCompletedPerWeek but only once per _WeekCompleted distinct value
(ie only the values 2,5,5,3,6 in _TotalCompletedPerWeek relating to 1,2,3,4,5 in _WeekCompleted)
Solved! Go to Solution.
Hello @Marc_S ,
Please try below measure if it works-
Measure = SUMX(SUMMARIZE(Data,Data[_WeekCompleted],Data[_TotalCompletedWeek]),Data[_TotalCompletedWeek])
It will be great if you can provide sample data and expected result.
If this solves the requirement, please mark it as solution.
Thanks!
Hello @Marc_S ,
Please try below measure if it works-
Measure = SUMX(SUMMARIZE(Data,Data[_WeekCompleted],Data[_TotalCompletedWeek]),Data[_TotalCompletedWeek])
It will be great if you can provide sample data and expected result.
If this solves the requirement, please mark it as solution.
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.