Display Excel Values in Korean 100 Million Won Units: Complete Guide to 12.3456억 Decimal Formatting

Display Excel Values in Korean 100 Million Won Units: Show the Remainder as Decimals (12.3456억)

When Korean won amounts in a report appear as long numbers such as 1,234,567,890, they can quickly become tiring to read. In practice, it is very common to display values only in 100 million won units (억), with the remainder shown as decimals of that unit, such as 12.3456억. This guide covers everything from displaying values in 억 units to using them in PivotTables and charts.

Quick Fix — Finish in 3 Minutes (Display Excel Values in 억 Units)

Goal: Keep the original Korean won values in column A and display values such as 12.3456억 in column B.

  1. Create a display column (column B) (recommended)
    B2: =A2/100000000
  2. Apply a custom format to column B
    Select column B → Ctrl + 1 → Number → Custom
    • To the nearest 10,000 won (4 decimal places): 0.0000"억"
    • To the nearest 1 million won (2 decimal places): 0.00"억"
  3. If you do not want rounding (round the actual value down)
    =ROUNDDOWN(A2/100000000,4)

Why Formatting Alone Cannot Cleanly Display 100 Million Won Units

In Excel custom number formats, commas (,) can scale down values, but they work only in multiples of 1,000. Therefore, a unit such as 100 million won (100,000,000), which is not an exact power of 1,000, is difficult to scale accurately with formatting alone. The safest approach is to divide by 100 million in a display column, then use the 억 suffix and the required number of decimal places.

Practical Example — Create and Verify 12.3456억

Sample Data (Copy and Paste)

ItemAmount (KRW)
Revenue1234567890
Expenses450000000
Profit784567890
Refund (Negative)-125670000
Zero Value0
Blank

1) Divide by 100 Million (Display Column)

If column A contains the original values, enter the following formula in column B.

=IF(A2="","",A2/100000000)

2) How to Choose Decimal Places (10,000 Won / 1 Million Won)

Decimal Places in 억 UnitsValue of One IncrementRecommended Use
1 digit10 million KRWHigh-level summaries
2 digits1 million KRWManagement or summary reports
3 digits100,000 KRWSettlement statements
4 digits10,000 KRWPractical standard (recommended)

3) Set a Rounding, Round-Down, or Truncation Policy

  • Round: =ROUND(A2/100000000,4)
  • Round down: =ROUNDDOWN(A2/100000000,4)
  • Truncate: =TRUNC(A2/100000000,4)

4) Formats for Zero Values, Blanks, and Negative Values (4 Sections)

Example custom format (positive;negative;zero;text):

0.0000"억";(0.0000"억");"-";@

How to Display 억 Units in PivotTables and Charts

PivotTable: Add an 억 Helper Column to the Source Data

  1. Add an Amount_억 column to the source table: =[@금액]/100000000
  2. Add Amount_억 to the Values area of the PivotTable.
  3. In Value Field Settings → Number Format, specify 0.0000"억".

Charts: Format Only When Data Is Already in 억 Units; Otherwise, Use a Helper Column

To use exact 100 million won units in a chart, the safest approach is to prepare the data in 억 units with a helper column.

Alternative Method and Precautions Checklist

Alternative 1) Display as “억 + 만” Text

=IF(A2="","", INT(A2/100000000)&"억 "&TEXT(INT(MOD(A2,100000000)/10000),"0")&"만")

Note: The result is text, so totals and sorting will not work as they do for numbers.

Troubleshooting

IssueCauseSolution
Totals look wrongYou changed the display but assumed the value changedKeep separate source (KRW) and display (억) columns
Decimal meaning is unclearThe unit for each decimal place is not clearly definedUse a decimal-place reference table to set the policy
Negative round-down results differ from expectationsINT and TRUNC are used interchangeablyUse ROUNDDOWN and TRUNC according to their distinct purposes
PivotTable formatting is resetThe format was not fixed in Value Field SettingsSet it in Value Field Settings → Number Format
Division does not workThe number is stored as textConvert it with VALUE or NUMBERVALUE

Related Posts (Internal Links)

Subscribe for the next post, which will cover practical ways to display even larger values using both 조 and 억 units.

2 thoughts on “Display Excel Values in Korean 100 Million Won Units: Complete Guide to 12.3456억 Decimal Formatting

  1. Panduan Strategi Rahasia Reply

    Wonderful goods from you, man. I have understand your stuff previous to and you are just extremely fantastic.
    I really like what you’ve acquired here, certainly like what you are stating and the way in which
    you say it. You make it enjoyable and you still take care of to keep it smart.
    I can not wait to read far more from you. This is actually a wonderful web site.

  2. Recommended Link Reply

    We stumbled over here coming from a different page and thought I
    might check things out. I like what I see so i
    am just following you. Look forward to checking out your web page for a second time.

Leave a Reply

Your email address will not be published. Required fields are marked *