Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I'm trying to build a switch statement, but I'm running into a formatting problem.
I'm using FORMAT(ActualVsBudgetPerc, "Percent" ) but this turns my value into a string which I want to avoid because I can't sort or rank the measure once it is turned into text. Here is my switch statement. I won't define the variables in the statement.
VAR Result = SWITCH(
SELECTEDVALUE([id]),
1, Sales,
8, ActualVsBudget,
5, FORMAT(ActualVsBudgetPerc, "Percent"),
4, SalesLY,
9, SalesLYVar,
6, FORMAT(SalesLYPerc, "Percent"),
Sales
)
RETURN
Result
Is there an alternative to FORMAT to get the percentage value to appear without turning it into a text string?
Thanks,
COIL-ibesmond
Solved! Go to Solution.
Under such scenario, I usually create two measures, one that only returns numeric data types and other one with format applied for display purpose just like an Elephant, one set for display teeth and another real set for chewing. 😄
Decided to go old-school and dropped the % from the value and multiplied it by 100.
Under such scenario, I usually create two measures, one that only returns numeric data types and other one with format applied for display purpose just like an Elephant, one set for display teeth and another real set for chewing. 😄
Thanks for the response. I though about making duplicate measures, but it would add too many new measure to the report, which is already over 1 GB.
You're welcome. Duplicate measure are a clutter but measures do not add to size of report.
have you considered using the built-in implicit formatting in Power BI?
Yes, I cannot format the entire measure because some values are dollar amounts and some are percentages. The measure calculates a row using the switch statement above.
ah, that's an important piece of information.
Enably Dynamic Measure Formatting and learn how to use it.
Create dynamic format strings for measures in Power BI Desktop - Power BI | Microsoft Learn
Tried this, but wouldn't work. Appreciate the response.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
12 | |
11 | |
10 | |
9 | |
8 |