Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
9 years ago
Solved

Convert the value to%

I have a measure in which I must bring the value of it inwardly and also in percentage:   Productivity = (sum (IndicatorValue [Value]) / COUNT (Equipment [Description]))   When I bring the ...
  • Anonymous's avatar
    Anonymous
    9 years ago

    Hi Anonymous,


    Agree with @vanessafvg.

    Your issue is caused by that the Productivity measure returns a value which is greater than 1, when you convert it to percentage in Power BI, the Productivity value will be multiplied by 100 and be displayed with % added. Only when the Productivity measure returns a value which is less than 1, you will get a percentage value within 100%.

    If you want to make the current measure return 0.8568, you would need to write the measure using : ((sum (IndicatorValue [Value]) / COUNT (Equipment [Description])))*0.0000001. This way, when you convert it to %, you will get 85.68%. However, I don’t think the above formula makes any sense, as you manually multiply the measure by 0.0000001.

    Regards,
    Lydia Zhang