Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

KPI Formatting

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%")

 

1 ACCEPTED SOLUTION
v-jiascu-msft
Microsoft Employee
Microsoft Employee

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%"
    )
)

switch

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-jiascu-msft
Microsoft Employee
Microsoft Employee

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%"
    )
)

switch

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
RMDNA
Solution Sage
Solution Sage

Hi @Anonymous,

 

I would set your calculations inside the measure using VAR and then just call them in SWITCH.

Anonymous
Not applicable

That still does not work. It seems that using the FORMAT() function is not allowed in a KPI

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors