Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi, I'm trying to combine the description in the satisfaction column with the results in the PCT,
I used this code to get the PCT that you see here in the screen , and then used the format options in the menu to show it as a %
PCTOfGrandTotal =
DIVIDE(
[SatisfactionCount],
CALCULATE(SUM('_DFE - Satisfaction (2)'[SatisfactionCount]), ALL('_DFE - Satisfaction (2)'))
)
For example my goal would be something like
Very Satisfied - 80.86%
But when I use the FORMAT function, like this command
Any help is appreciated.
Solved! Go to Solution.
Hello,
Please try the following measure
Satisfaction %=
Selectedvalue([Satisfaction])&" - "&Round(PCTOfGrandTotal*100,2)&"%"
Thanks, For a measure that works perfectly!
But my needs are to use that text as part of a chart, and unfortunately I can't add measures to a chart.
Is there anyway around that? I'm using the final result you provided as a replacent for just the descriptions.
Something like this but with the formatted descriptions including the %
Hello,
Please try the following measure
Satisfaction %=
Selectedvalue([Satisfaction])&" - "&Round(PCTOfGrandTotal*100,2)&"%"
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
78 | |
78 | |
58 | |
35 | |
32 |
User | Count |
---|---|
99 | |
59 | |
56 | |
46 | |
40 |