How do I subtract percentages in Power BI? Cant get it to work.
Measure1 = 1
Measure2 = 0.9
Measure3 = [Measure1] - [Measure2]
This ofcourse works fine, but when I try to format my measures to show everything in percentages, I get the "Cannot convert value 100% of type Text to type Number"-Error when I try to visualize Measeure3 with the below code.
Measure1 = Format(1,"0.0%")
Measure2 = Format(0.9,"0.0%")
Measure3 = [Measure1] - [Measure2]
How do i calculate and visualize this easy formula when the figures are formated as percentages?

