Forum Discussion
Anonymous
5 years agoNot applicable
Sum a Column by the Value in Another Column
Hi, I'd like to sum the values in a column based on the value in another column. Here is an example of my data: I'd like a new column which sums the Diff. Time for each Work Area. In this ...
- 5 years ago
Anonymous , You might have create a new column in aseqdn (2)
Work Area = related(ast[Work Area]) // refer other option in video https://www.youtube.com/watch?v=czNHt7UXIe8
and create a new column like
Column = CALCULATE(SUM('aseqdn (2)'[Diff. Time]),FILTER('aseqdn (2)',[Work Area]=EARLIER([Work Area])))
amitchandak
Super User
5 years agoAnonymous , You might have create a new column in aseqdn (2)
Work Area = related(ast[Work Area]) // refer other option in video https://www.youtube.com/watch?v=czNHt7UXIe8
and create a new column like
Column = CALCULATE(SUM('aseqdn (2)'[Diff. Time]),FILTER('aseqdn (2)',[Work Area]=EARLIER([Work Area])))