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
ys034
Helper I
Helper I

Format Cell Value without k,m,b

Hi,

 

is there any possibility to change the Value from 31,0K to 31,0 it should not show me the k

 

ys034_0-1663147695075.png

i have tried to change it via this format section but i can't get to the solutio.

Is there any trick?

 

ys034_1-1663147869344.png

 

2 ACCEPTED SOLUTIONS
MFelix
Super User
Super User

Hi @ys034 ,

 

This is related with the card options that you cannot change directly. In this case the better option is to create a measure that get's the value on thousand and then, you need to go to the card settings and then select the callout value and select none instead of auto:

 

ThousandValue =DIVIDE( SUM(Table[Value]), 1000)

MFelix_1-1663230196337.png

 

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

v-zhangti
Community Support
Community Support

Hi, @ys034 

 

You can try the following methods.

Column:

Column = FORMAT([Value], "#,##0")  
Column 2 = FIND(",",[Column])
Column 3 = LEFT([Column],[Column 2]-1)

vzhangti_0-1663232832471.png

Result:

vzhangti_2-1663232975055.pngvzhangti_3-1663233011865.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

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-zhangti
Community Support
Community Support

Hi, @ys034 

 

You can try the following methods.

Column:

Column = FORMAT([Value], "#,##0")  
Column 2 = FIND(",",[Column])
Column 3 = LEFT([Column],[Column 2]-1)

vzhangti_0-1663232832471.png

Result:

vzhangti_2-1663232975055.pngvzhangti_3-1663233011865.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

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

MFelix
Super User
Super User

Hi @ys034 ,

 

This is related with the card options that you cannot change directly. In this case the better option is to create a measure that get's the value on thousand and then, you need to go to the card settings and then select the callout value and select none instead of auto:

 

ThousandValue =DIVIDE( SUM(Table[Value]), 1000)

MFelix_1-1663230196337.png

 

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Thank you!!! both workarounds works for me

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.