Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi , I want to show decimal values with some % values in same Power BI table, how to achieve this ?
Solved! Go to Solution.
Hi, @Anonymous ;
You could create a dax measure as follows:
May 2021 Actual2 =
IF (
CONTAINSSTRING ( MAX ( [SAR] ), "%" ),
FORMAT ( MAX ( [May 2021 Actual] ), "percent" ),
MAX ( [May 2021 Actual] )
)
May 2021 Budget2 =
IF (
CONTAINSSTRING ( MAX ( [SAR] ), "%" ),
FORMAT ( MAX ( [May 2021 Budget] ), "percent" ),
MAX ( [May 2021 Budget] )
)
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous ;
You could create a dax measure as follows:
May 2021 Actual2 =
IF (
CONTAINSSTRING ( MAX ( [SAR] ), "%" ),
FORMAT ( MAX ( [May 2021 Actual] ), "percent" ),
MAX ( [May 2021 Actual] )
)
May 2021 Budget2 =
IF (
CONTAINSSTRING ( MAX ( [SAR] ), "%" ),
FORMAT ( MAX ( [May 2021 Budget] ), "percent" ),
MAX ( [May 2021 Budget] )
)
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks @selimovd
The issue with me is all values I am fetching from a table and in table some values are in decimal where some are in %.
now I want to show these 0 and 1 to %.
hope I am clear now ??
Hey @Anonymous ,
for each column or measure you can change the type. Select the column or measure "Contribution Margin (%)", to to the tab "Measure tools" / "Column tools" and chose "Percentage" as Format:
Then for the Sales you chose decimal number or currency and so on.
In the matrix the correct formatting will be shown then.
Does that help?
I made a profile just to persionally tell you that this was incredibly helpful! In the PBI world where everyone wants to boil the ocean a sweet and simple repsonse to get the job done is a light in the otherwise darkness of data. Thanks friend!
I dont have any calculated column and measures. I have only straight forward columns. Like you can see in screenshot. I am also sending you screenshot of table which I want to prepare in Power BI.
Can you please provide a solution now.
@Anonymous
what about set the column data format to %?
Proud to be a Super User!
Hey @Anonymous ,
you can add the measure with decimal values and the measure with percentage to the same Power BI table.
Just drop them in the same matrix.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 49 | |
| 42 |