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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Lime
New Member

Formatting of "K" in Thousands values

Hi - I have some cards that are showing values in thousands with an UPPERCASE "K". I have a request for the K to be lowercase. Anyone knows a way to bypass the auto-formatting of this K?

Thanks

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

@Lime ,

 

I'm afraid the default "K" can't be converted to the lowercase. You need to create a calculate column using dax below:

Column = 'Table'[Value] / 1000 & "k"

Capture.PNG

 

Community Support Team _ Jimmy Tao

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

2 REPLIES 2
aggregator3000
Advocate II
Advocate II

Presenting another approach for other searchers..
You can define explicitly within a measure; PBI has a fairly robust format() function DAX Guide for custom number formatting 
ie. with 1 dec pl

 

format( [Measure], "#,.0,k")

 

 

v-yuta-msft
Community Support
Community Support

@Lime ,

 

I'm afraid the default "K" can't be converted to the lowercase. You need to create a calculate column using dax below:

Column = 'Table'[Value] / 1000 & "k"

Capture.PNG

 

Community Support Team _ Jimmy Tao

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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