Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
I have a page of KPIs for sales by each channel. I have created a dynamic switcher that allows me to switch between total $ amount and percentage of total. However, whenever I try to format these measure it returns blank.
For example:
Switcher = SWITCH([Selected Measure],1,FORMAT([Direct Mail $],"$000,000.00"),2,CALCULATE(SUM([Total Sales]), [channel] = "Direct Mail"))/FORMAT(SUM('[Total Sales]),"0.00%")
Solved! Go to Solution.
Hi @Anonymous,
I tried it like below successfully. You can give it a try.
Switcher =
SWITCH (
[Selected Measure],
1, FORMAT ( [Direct Mail $], "$000,000.00" ),
2, FORMAT (
CALCULATE ( SUM ( [Total Sales] ), [channel] = "Direct Mail" )
/ SUM ( [Total Sales] ),
"0.00%"
)
)
Best Regards,
Dale
Hi @Anonymous,
I tried it like below successfully. You can give it a try.
Switcher =
SWITCH (
[Selected Measure],
1, FORMAT ( [Direct Mail $], "$000,000.00" ),
2, FORMAT (
CALCULATE ( SUM ( [Total Sales] ), [channel] = "Direct Mail" )
/ SUM ( [Total Sales] ),
"0.00%"
)
)
Best Regards,
Dale
Hi @Anonymous,
I would set your calculations inside the measure using VAR and then just call them in SWITCH.
That still does not work. It seems that using the FORMAT() function is not allowed in a KPI
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 20 | |
| 20 | |
| 12 |
| User | Count |
|---|---|
| 67 | |
| 55 | |
| 42 | |
| 38 | |
| 30 |