Forum Discussion
Gopiraju404
1 year agoFrequent Visitor
Text should be text and numeric values should be converted to percentage
Hi everyone, One Column (Data type text) contains text and numeric values. Text should be text and numeric values should be converted to percentage in Power BI. how i will get this. This sa...
- 1 year ago
Hi Gopiraju404 please check this custom column
=if Value.Is(Value.FromText([Q1]), type number)
then Text.From(Number.Round(Value.FromText([Q1]) * 100, 2)) & "%"
else [Q1] - 1 year ago
Hey Gopiraju404 ,
next to using Power Query you can also use Dynamic formatting if you create a measure: https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-dynamic-format-strings
Hopefully, this adds some new ideas.
Regards,
Tom
TomMartens
Super User
1 year agoHey Gopiraju404 ,
next to using Power Query you can also use Dynamic formatting if you create a measure: https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-dynamic-format-strings
Hopefully, this adds some new ideas.
Regards,
Tom