Forum Discussion
JadeDoherty
6 years agoRegular Visitor
Calculating Percentage of Target with Ramp up
Hello all, Wondering if someone may be able to assist. I need to somehow create a measure that can provide me with the desired % of Target readings based on some rules as set out in the example ...
lbendlin
Super User
6 years agoYou can use the DAX MIN() function to cap the percentage like so
result = MIN(achieved percentage, 1)
can never be higher than 100 %
JadeDoherty
6 years agoRegular Visitor
Thanks lbendlin ,
The only issue with that is if the sales person is not on ramp up - the % achieved can be over 100% and we need to show that.