Forum Discussion
jawilson808
5 years agoHelper I
Variance between two measure values
Hi All, I am attempting to calculate the difference between multiple forecast scenarios. As an example, from the screeshot below, i am attempting to calculate the difference column based on the prior...
- 5 years ago
jawilson808 , A new column
new column =
[Value] - Sumx(filter(Table,[forecast]="forecast 1"),[value])/// or a new measure
new measure =
sum(Table[Value]) - Maxx(filter(allselected(Table),[forecast]="forecast 1"),[value])
amitchandak
5 years agoSuper User
jawilson808 , A new column
new column =
[Value] - Sumx(filter(Table,[forecast]="forecast 1"),[value])
/// or a new measure
new measure =
sum(Table[Value]) - Maxx(filter(allselected(Table),[forecast]="forecast 1"),[value])
jawilson808
5 years agoHelper I
Thank you so much amitchandak. Worked like a charm.