Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Format string in Tabular Editor in Thousands

Hi ,

 

Can someone help me to figure out the format string ot use for the below :

Current Format : 

$8,255,064

Desired Format : 

8,255 K

 

Thanks,

 

Deevs

  • Hi, Anonymous 

     

    It’s my pleasure to answer for you.

    You may need to modify you date type in your model ,then try this in tabular editor:

    If it doesn’t solve your problem, please feel free to ask me.

     

    Best Regards

    Janey Guo

     

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

11 Replies

  • v-janeyg-msft's avatar
    v-janeyg-msft
    Community Support

    Hi, Anonymous 

     

    It’s my pleasure to answer for you.

    You may need to modify you date type in your model ,then try this in tabular editor:

    If it doesn’t solve your problem, please feel free to ask me.

     

    Best Regards

    Janey Guo

     

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

  • Hi Anonymous 

     

    Rather than changing it in Editor, you could do it at the visual level.

     

     

     

    However, if you want to do it in Editor, you can try to do the following steps:

    1. Create a new column, divide it by 1000
    2. Round up/down your new column
    3. Change the data type to text
    4. Concatenate the new column with " K"

    If you want to do it in DAX, use the create a new column using the following formula:

    1. New Format = 'Table'[Value] /1000 & " K"
    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi darentengmfs 

      Thanks for that but i really don't want to create whole bunch of measures as I got 20 plus measures that I have to apply that.

      I really need to figure out updating it in the Tabluar Editor.

      Thanks,

      Deevs