Forum Discussion

swaroopkumarmg's avatar
6 years ago
Solved

Measure in between Brackets

Hello PBI Nation,   Need a small help.   Im trying to create a measue that show percentage. example : 89% Im able to come up with the calculation and the correct number, but i want the percentag...
  • Anonymous's avatar
    Anonymous
    6 years ago

    The measure calculating the percentage will most likely return the value 0.89.
    When selecting this as a percentage Power BI makes sure it looks like 89%. (0.89*100). 

    So basically you have to create the string like: 

    "(" & (precentage calculation)*100 & "%)"