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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
zfemmer
Helper I
Helper I

DAX - FORMAT with SWITCH

I have 2 slicers that are used allow the end-user select what measure they want to see:

zfemmer_0-1601060995307.png

I am using a SWITCH function to switch between different measures, but I would like to format these as 4 of them are currency and the other 2 are whole numbers. However, when I do this it does not allow me to put the measure into my charts because of the custom formatting:

M_MeasureSelection = 
VAR MeasureSelect = SELECTEDVALUE(MeasureSelection[MeasureType]) & " " & SELECTEDVALUE(MeasureSelection[Measure])

RETURN
    SWITCH (
        TRUE (),
        MeasureSelect = "Booked ADR",
            FORMAT([M_BookedADR], "$#.##"),
        MeasureSelect = "Booked Revenue",
            FORMAT([M_BookedRevenue], "$#.##"),
        MeasureSelect = "Booked Room Nights",
            FORMAT([M_BookedRoomNights], "#.##"),
        MeasureSelect = "Actualized ADR",
            FORMAT([M_ActualizedADR], "$#.##"),
        MeasureSelect = "Actualized Revenue",
            FORMAT([M_ActualizedRevenue], "$#.##"),
        MeasureSelect = "Actualized Room Nights",
            FORMAT([M_ActualizedRoomNights], "#.##")
    )

It does work with my charts when I take out the FORMAT functions:

M_MeasureSelection2 = 
VAR MeasureSelect = SELECTEDVALUE(MeasureSelection[MeasureType]) & " " & SELECTEDVALUE(MeasureSelection[Measure])

RETURN
    SWITCH (
        TRUE (),
        MeasureSelect = "Booked ADR",
            [M_BookedADR],
        MeasureSelect = "Booked Revenue",
            [M_BookedRevenue],
        MeasureSelect = "Booked Room Nights",
            [M_BookedRoomNights],
        MeasureSelect = "Actualized ADR",
            [M_ActualizedADR],
        MeasureSelect = "Actualized Revenue",
            [M_ActualizedRevenue],
        MeasureSelect = "Actualized Room Nights",
            [M_ActualizedRoomNights]
    )

 

Does anyone have any ideas on this? Any other options or do I just have to remove the formatting?

3 REPLIES 3
MattAllington
Community Champion
Community Champion

You could use the technique I describe here to solve this issue. https://exceleratorbi.com.au/dynamic-formatting-of-switch-measures/



* Matt is an 8 times Microsoft MVP (Power BI) and author of the Power BI Book Supercharge Power BI.
I will not give you bad advice, even if you unknowingly ask for it.

Do you know if this is even available for Power BI Report Server?

 

Looks like it was released in July for Power BI Service, but Report Server hasn't had a release since May.

This would for sure help me, but we are still on an old version of Power BI Desktop because they have not updated our report server since January.

 

Maybe this is just another reason to push for it. 🙂

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.