Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
In the screenshot below I give my user the abolity to compare months either as an actual value or as a %. The problem is that I do not know how to force a percent format should my user select "As Percentage". In the (commented out) dax code below, I have tried to use the format() function but this breaks my entire visualisation.
Could anyone help me please?
Diff LM =
SWITCH( TRUE(),
[Selected Metric] = "By Amount", [Diff. to LM],
[Selected Metric] = "By Percent", [% Diff to LM],
// [Selected Metric] = "By Percent", format([% Diff to LM], "Percent"),
[Diff. to LM] )
When I try to format my percentage case, I loose all my values like so:
Hi @michellepace ,
You can have a look at this video.
https://www.youtube.com/watch?v=xV8x7OTXIkE
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
@michellepace
Your measure seems fine, can you try it on new table visual. Check your Slicer it it returns a single value as expected.
Diff LM =
SWITCH( TRUE(),
[Selected Metric] = "By Amount", [Diff. to LM],
[Selected Metric] = "By Percent", FORMAT([% Diff to LM], "Percent"),
[Diff. to LM]
)
________________________
Did I answer your question? Mark this post as a solution, this will help others!.
Click on the Thumbs-Up icon on the right if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |