Forum Discussion
laura_ESNH
5 years agoFrequent Visitor
Sum of Calculated Measure
I am managing a program where we are tracking individuals weight loss and the overall success of the group. I have one table with the participants initial weights: There is a separate table t...
- 5 years ago
laura_ESNH , Try a measure like
sumx(values('Participants'[initials]), 'Monthly Weigh-in'[Current Weight] - 'Monthly Weigh-in'[Starting Weight])
amitchandak
Super User
5 years agolaura_ESNH , Try a measure like
sumx(values('Participants'[initials]), 'Monthly Weigh-in'[Current Weight] - 'Monthly Weigh-in'[Starting Weight])
laura_ESNH
5 years agoFrequent Visitor
I just needed to use the table that only had the participant listed once. I was so close, thanks for bringing this across the finish line.