This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 25 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 27 | |
| 24 | |
| 19 |