Custom Number Formatting in Excel: Displaying Values in Thousands (K)

Nov 22, 2025 · Programming · 11 views · 7.8

Keywords: Excel | Custom Number Formatting | Thousands Display

Abstract: This article provides a comprehensive exploration of using custom number formats in Excel to display values in thousands (K) units. By analyzing the core format code [>=1000]#,##0,"K";0, it explains the integration of conditional formatting, thousand separators, and text suffixes. The content extends to include decimal-based thousand formats, million-level formatting implementations, and complex conditional formatting combinations, offering complete numerical formatting solutions for Excel users.

Fundamentals of Excel Custom Number Formatting

Microsoft Excel offers powerful custom number formatting capabilities that allow users to flexibly control how numerical values are displayed according to specific requirements. Custom formats utilize specialized code syntax to alter the visual presentation of values in cells without changing their actual numerical content.

Core Implementation of Thousand (K) Formatting

To display values in thousands (K) units, the following custom format code can be used:

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

This format code consists of four key components:

Practical Application Examples

After applying the above format, different numerical values display as follows:

Extended Formatting Capabilities

Thousand Format with Decimal Places

When decimal precision is required, the following format can be used:

##0.0,"K"

This displays 23567 as 23.6K, preserving one decimal place. Depending on regional settings, #0,0."K" format may also be appropriate.

Million-Level Format Implementation

By adding additional commas, formatting can be extended to million-level displays:

##0.0,, "m"

This format displays 1234567 as 1.2m, where two commas achieve division by 1,000,000.

Complex Conditional Formatting

Excel also supports more sophisticated conditional combinations:

[<1000000]£##0, "k";[>=1000000]£0.0,," m"

This format implements:

Technical Principle Analysis

Excel's custom number formatting operates on the following core principles:

Best Practice Recommendations

When using custom number formats, consider the following guidelines:

Application Scenarios

This thousand-based formatting technique proves particularly valuable in:

Copyright Notice: All rights in this article are reserved by the operators of DevGex. Reasonable sharing and citation are welcome; any reproduction, excerpting, or re-publication without prior permission is prohibited.