Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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
Solved! Go to Solution.
@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"
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.
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")
@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"
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
104 | |
69 | |
49 | |
41 | |
34 |
User | Count |
---|---|
164 | |
111 | |
61 | |
53 | |
38 |