How to Format Excel Values as Millions with One Decimal Place (6 Methods)

Scenario

Suppose we have a dataset with large sales values that are cumbersome to read quickly. We want to use a custom number format to display these values in millions with one decimal place. Additionally, we’ll explore different methods to achieve this.

Excel custom number format millions with one decimal


Method 1 – Custom Number Format with Zero (0)

Excel custom number format millions with one decimal

  • Select the range of cells containing the sales values.
  • Go to the Home tab, navigate to the Number group, and click on the Number Format dialog box symbol. Alternatively, you can press CTRL+1.

custom number format with zero

  • The Format Cells dialog box will appear.
  • Click on the Custom category and enter the following format in the Type box:
0.0,, "M"

The 0 represents the numeric part of the value.

The two commas represent millions (since the million value has two commas 1,000,000).

The “M” is the suffix we want to add after the value to indicate millions.

  • Press OK.

custom number format with zero

The sales values will now display in the desired format, with one decimal place and the “M” indicator. These values remain in number format, allowing you to perform calculations.

Excel custom number format millions with one decimal

Read More: How to Custom Number Format in Excel with Multiple Conditions


Method 2 – Hashtag Symbol (#) in Custom Number Format

Excel custom number format millions with one decimal

  • Select the range of cells containing the sales values.
  • Go to the Home tab, navigate to the Number group, and click on the Number Format dialog box symbol.

custom number format with hashtag

  • The Format Cells dialog box will open.
  • Click on the Custom category and enter the following format in the Type box:
#.0,, "M"
    • The # serves as a placeholder for any numeric value before the decimal point.
    • The 0 is used after the decimal point. If a value has no decimal part, it will display as zero (e.g., 1.0 M).
    • The two commas represent millions.
    • The “M” suffix indicates millions.
  • Press OK.

custom number format with hashtag

You’ll now have sales values formatted as millions with one decimal place, and these values will be stored as numbers.

Excel custom number format millions with one decimal


Method-3 – Using the ROUND Function to Format Sales Values as Millions with One Decimal

In this section, we’ll leverage the ROUND function along with the Ampersand operator to change the format of large sales values to millions with one decimal place.

Excel custom number format millions with one decimal

  • Enter the following formula in cell E4:
=ROUND((D4/1000000),1)&" "&"M"
    • Here, D4 represents the sales value.
    • D4/1000000 calculates the value divided by 1,000,000.
    • The ROUND function rounds the result to one decimal place.
    • The Ampersand (&) joins the rounded value with a space and the suffix “M.”

ROUND function

  • Press ENTER and drag down the Fill Handle tool.

ROUND function

As a result, the sales values will be displayed in the desired format (e.g., 4.3 M), but they will be treated as text (not numbers) for calculations.

Excel custom number format millions with one decimal

Read More: How to Format Number to Millions in Excel


Method 4 – Using the Paste Special Option for Millions with One decimal

To execute the Paste Special option, we need the value 1,000,000 (since 1M = 1,000,000). Follow these steps:

Excel custom number format millions with one decimal

  • Choose the value of cell C13 and press CTRL+C.

paste special option

  • Select the range of the Sales column, right-click, and choose the Paste Special option.
    • Alternatively, use the shortcut key ALT + E, S (press ALT and E together, then S).

Excel custom number format millions with one decimal

  • In the Paste Special wizard, select the options Values and Divide, then press OK.

paste special option

The sales values will now be divided by 1,000,000, resulting in fractional numbers. To display them as millions with one decimal place, follow these additional steps:

paste special option

  • Enter the following formula in cell E4
=ROUND(D4,1)&" "&"M"
    • D4 represents the fraction sales value.
    • The ROUND function rounds it to one decimal place.
    • The Ampersand (&) adds the suffix M after a space.

paste special option

  • Press ENTER and drag down the Fill Handle tool.

paste special option

The formatted sales values will be stored as text (not numbers).

Excel custom number format millions with one decimal

Read More: How to Format a Number in Thousands K and Millions M in Excel


Method 5 – Using the TEXT Function for Millions with One Decimal in Excel

In this section, we’ll use the TEXT function to change the format of sales values to an easily readable format indicating millions with one decimal place. Keep in mind that after formatting, these values won’t be usable for calculations.

Excel custom number format millions with one decimal

  • Enter the following formula in cell E4:
=TEXT(D4,"0.0,,")&" "&"M"
    • D4 represents the sales value.
    • 0.0, specifies the formatting for millions.
    • The Ampersand (&) adds the M indicator after a space.

TEXT function

  • Press ENTER and drag down the Fill Handle tool.

TEXT function

This approach will give you sales values formatted as millions with one decimal place. Remember that they’ll be stored as text.

Excel custom number format millions with one decimal

Read More: How to Apply Number Format in Millions with Comma in Excel


Method 6 – Using Conditional Formatting for Millions with One Decimal

Excel custom number format millions with one decimal

Select the Range:

  • Highlight the range of cells containing the sales values that you want to format.

Access Conditional Formatting:

  • Go to the Home tab.
  • In the Styles group, click on the Conditional Formatting dropdown.
  • Choose New Rule.

Conditional Formatting

Configure the Rule:

  • In the New Formatting Rule wizard, select the option “Format only cells that contain.”
  • In the three input boxes, enter the following:
    • First Box: Cell Value
    • Second Box: greater than or equal to
    • Third Box: 1000000

Excel custom number format millions with one decimal

Define the Custom Format:

  • After clicking the Format button, the Format Cells dialog box will appear.
  • Go to the Number tab.
  • Choose the Custom category.
  • In the Type box, enter the following format:
0.0,, "M"
    • The 0 represents the numeric part of the value.
    • The two commas represent millions (since the million value has two commas: 1,000,000).
    • The “M” is the suffix we want to add after the value to indicate millions.
  • Press OK.

Conditional Formatting

Apply the Rule:

  • Back in the New Formatting Rule dialog box, press OK.

Conditional Formatting

Now, your sales values will be displayed in the desired format (e.g., 4.3 M), indicating millions with one decimal place. Keep in mind that these formatted values will be stored as text (not numbers) and won’t be usable for calculations.

Excel custom number format millions with one decimal

Read More: How to Add Number with Text in Excel Cell with a Custom Format


Practice Section

We have provided a Practice sheet named Practice.

Practice


Download Workbook

You can download the practice workbook from here:


Related Articles


<< Go Back to Custom Number Format | Number Format | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Tanjima Hossain
Tanjima Hossain

TANJIMA HOSSAIN is a marine engineer who enjoys working with Excel and VBA programming. For her, programming is a handy, time-saving tool for managing data, files, and online tasks. She's skilled in Rhino3D, Maxsurf C++, MS Office, AutoCAD, and Excel & VBA, going beyond the basics. She holds a B.Sc. in Naval Architecture & Marine Engineering from BUET and is now a content developer. In this role, she creates tech-focused content centred around Excel and VBA. Apart from... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo