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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Rymatt830
Advocate II
Advocate II

Change Measure Format

I am unable to change the format of a measure. The Formatting section of the Modeling tab only allows Format: Text to be selected. Here's the measure:

NHSSVUNNetAssets = CALCULATE(MEDIAN(AuditNumbers[UnrestNA]),AuditNumbers[PCODE]="8217")

 

Capture.PNG

It's possible I am using the wrong DAX. For example, Median is not necessary because the measure filters to one value; however, the measure requires an aggregation. I want the measure displayed as currency. Any help would be great.

1 ACCEPTED SOLUTION
Twan
Advocate IV
Advocate IV

That is very strange.  It looks like is a bug with the MEDIAN() function.  If you change your measure to use AVERAGE() instead of MEDIAN() it allows you to format the measure in formats besides Text.

 

One way to get around this bug would be to calculate the median without using the MEDIAN() function.  SQL BI has a great desctiption of how you would write your own MEDIAN measure in DAX.

 

It would look like this for your model:

Custom Median :=
(
    MINX (
        FILTER (
            VALUES ( AuditNumbers[UnrestNA] ),
            CALCULATE (
                COUNT ( AuditNumbers[UnrestNA] ),
                AuditNumbers[UnrestNA]
                    <= EARLIER ( AuditNumbers[UnrestNA] )
            )
                > COUNT ( AuditNumbers[UnrestNA] ) / 2
        ),
        AuditNumbers[UnrestNA]
    )
        + MINX (
            FILTER (
                VALUES ( AuditNumbers[UnrestNA] ),
                CALCULATE (
                    COUNT ( AuditNumbers[UnrestNA] ),
                    AuditNumbers[UnrestNA]
                        <= EARLIER ( AuditNumbers[UnrestNA] )
                )
                    > ( COUNT ( AuditNumbers[UnrestNA] ) - 1 ) / 2
            ),
            AuditNumbers[UnrestNA]
        )
) / 2

Then change your measure to use the custom median measure and you will be able to change the format of this measure to currency.

NHSSVUNNetAssets = CALCULATE([Custom Median] ,AuditNumbers[PCODE]="8217")

 

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

I found a fix to this was to just put a vlue around the outside 🙂

 

NHSSVUNNetAssets = Value(CALCULATE(MEDIAN(AuditNumbers[UnrestNA]),AuditNumbers[PCODE]="8217"))

 

Anonymous
Not applicable

Why is this marked "Solved?" There is still a bug in Median aggregation which prevents numbers from being formatted as anything other than text. 

The bug is still there

Greg_Deckler
Community Champion
Community Champion

Try SUM or MAX instead of MEDIAN



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Twan
Advocate IV
Advocate IV

That is very strange.  It looks like is a bug with the MEDIAN() function.  If you change your measure to use AVERAGE() instead of MEDIAN() it allows you to format the measure in formats besides Text.

 

One way to get around this bug would be to calculate the median without using the MEDIAN() function.  SQL BI has a great desctiption of how you would write your own MEDIAN measure in DAX.

 

It would look like this for your model:

Custom Median :=
(
    MINX (
        FILTER (
            VALUES ( AuditNumbers[UnrestNA] ),
            CALCULATE (
                COUNT ( AuditNumbers[UnrestNA] ),
                AuditNumbers[UnrestNA]
                    <= EARLIER ( AuditNumbers[UnrestNA] )
            )
                > COUNT ( AuditNumbers[UnrestNA] ) / 2
        ),
        AuditNumbers[UnrestNA]
    )
        + MINX (
            FILTER (
                VALUES ( AuditNumbers[UnrestNA] ),
                CALCULATE (
                    COUNT ( AuditNumbers[UnrestNA] ),
                    AuditNumbers[UnrestNA]
                        <= EARLIER ( AuditNumbers[UnrestNA] )
                )
                    > ( COUNT ( AuditNumbers[UnrestNA] ) - 1 ) / 2
            ),
            AuditNumbers[UnrestNA]
        )
) / 2

Then change your measure to use the custom median measure and you will be able to change the format of this measure to currency.

NHSSVUNNetAssets = CALCULATE([Custom Median] ,AuditNumbers[PCODE]="8217")

 

Thank you for your help, Twan. Using AVERAGE() instead of MEDIAN() allows the format to be changed. Also, thank you for including a reference to the custom function.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors