Forum Discussion
Anonymous
7 years agoNot applicable
Calculate discount
Hello all, i am super new to DAX and have been assigned a task to calculate discount based on sum of the value. forexample: The total sum of a column is 125; i want to apply 25% discount on the sum. ...
- 7 years ago
Just start with creating a measure:
Discounted Value = SUM(Column[Value]) * 0,75