March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Thanks in advance!
I have created a matrix visualization and my primary column is sum of hours. I then created a calculated column (Optimum) to run alongside it, BUT how do i then format that optimum column to become a % value rather than just a decimal number?
Solved! Go to Solution.
hello @TK1966
is it possible to change it form the ribbon option?
select OPTIMUM column to show the ribbon then change into percent.
Hope this will help.
Thank you.
Hi @TK1966 ,
I think you can also change your DAX code, here I create a table as you mentioned.
Then I create a calculated column and it will give you what you want.
Column =
VAR _Total =
SUM ( 'Table'[Sales] )
RETURN
FORMAT ( 'Table'[Sales] / _Total, "0.00%" )
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @TK1966 ,
I think you can also change your DAX code, here I create a table as you mentioned.
Then I create a calculated column and it will give you what you want.
Column =
VAR _Total =
SUM ( 'Table'[Sales] )
RETURN
FORMAT ( 'Table'[Sales] / _Total, "0.00%" )
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hello @TK1966
is it possible to change it form the ribbon option?
select OPTIMUM column to show the ribbon then change into percent.
Hope this will help.
Thank you.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
87 | |
70 | |
51 |
User | Count |
---|---|
206 | |
150 | |
97 | |
78 | |
69 |