Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

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. ...
  • Michiel's avatar
    7 years ago

    Just start with creating a measure:

    Discounted Value = SUM(Column[Value]) * 0,75