Forum Discussion
percentage
Dear all
there is something I am doing incorrectly in the measure, which is yielding the wrong result, below is the formula I have used
all results are coming 100% and above
Not sure what is it I am doing incorrectly
I am trying to show what % of the hours are charged for a particular service line(using a line graph), in this case, its GCR of the total hours on a monthly basis
vjnvinod , Try like
GCR% =
calculate( DIVIDE(
SUM('ECH MoM'[Actual] ),
CALCULATE(
SUM('ECH MoM'[Actual]),
ALLSELECTED('ECH MoM'[Actual])
)
), filter('ECH MoM', 'ECH MoM'[Eng SSL Mapped1]="GCR"))
1 Reply
- amitchandakSuper User
vjnvinod , Try like
GCR% =
calculate( DIVIDE(
SUM('ECH MoM'[Actual] ),
CALCULATE(
SUM('ECH MoM'[Actual]),
ALLSELECTED('ECH MoM'[Actual])
)
), filter('ECH MoM', 'ECH MoM'[Eng SSL Mapped1]="GCR"))