Forum Discussion
awitt
7 years agoHelper III
Sort filtered column by another column value.
How do i seperate the far right column to show the sum per order # instead of the total for both? All of the values in "Column" for Order# 10001 should be 10 and 10002 should be 12.
- Anonymous7 years ago
Try this :
Column = CALCULATE(SUM(Table1[Revenue]),ALL(Table1), Table1[Order#]= EARLIER(Table1[Order#]), Table1[Item Version]="S")
Thanks
Raj
awitt
7 years agoHelper III
Still getting the total revenue for all "s" revenue instead of it sorting by Order #.
Anonymous
7 years agoNot applicable
Try this :
Column = CALCULATE(SUM(Table1[Revenue]),ALL(Table1), Table1[Order#]= EARLIER(Table1[Order#]), Table1[Item Version]="S")
Thanks
Raj
- awitt7 years agoHelper III
Awesome, thanks!