Format numbers in thousands (K) in Excel

后端 未结 6 656
离开以前
离开以前 2020-12-12 22:36

In MS Excel, I would like to format a number in order to show only thousands and with \'K\' in from of it, so the number 123000 will be displayed in the cell as 123K

6条回答
  •  眼角桃花
    2020-12-12 22:59

    Enter this in the custom number format field:

    [>=1000]#,##0,"K€";0"€"
    

    What that means is that if the number is greater than 1,000, display at least one digit (indicated by the zero), but no digits after the thousands place, indicated by nothing coming after the comma. Then you follow the whole thing with the string "K".

    Edited to add comma and euro.

提交回复
热议问题