How do you handle calculations when working with tables in a Hangul file?
Most often, individuals go through the cumbersome process of separately launching a calculator or Excel to perform calculations, only to input the results back into Hangul.
However, constantly switching between programs is inefficient and prone to errors.
Fortunately, the Hangul program has robust built-in calculation features similar to Excel. By utilizing the Hangul formula entry function, you can automate complex calculations without a separate program, and you can use both relative and absolute references, significantly enhancing work efficiency.
This article will provide a detailed exploration of how to use formulas in Hangul tables, from understanding relative and absolute references to calculating composition ratio and growth rate frequently used in the field.
Basic Concepts and Cell Address System of Hangul Table Formulas
Understanding the Cell Address System in Hangul Tables
Before starting work with Hangul formulas, it's essential to understand the cell address system.
Like Excel, each cell within a Hangul table has a unique address, allowing for precise formula creation.
Column numbers in a Hangul table are designated using the alphabet in order from A, B, C, D, E starting from the first column.
Row numbers use numbers consecutively from the first row as 1, 2, 3, 4, etc.
Thus, a cell located at column C, row 2, is denoted as C2, which is identical to the Excel method.
Once you understand this cell address system, creating formulas in Hangul tables becomes much easier.
You can precisely identify each cell's position and know exactly what data is being referenced, even in complex formulas.
✅ Recommended Reading
If you want to learn more about working with Hangul tables, check out the Complete Guide to Editing Hangul Tables!
Basic Methods and Processes for Entering Hangul Formulas
Accessing the Formula Menu

The process of entering Hangul formulas is quite intuitive. First, select the cell where you want the calculation result to appear, right-click with your mouse, and choose the formula from the menu that appears.
This will open the formula dialog box, where you can input the desired formula following the equal sign.
Writing Basic Arithmetic Formulas
Basic arithmetic can be written in the same manner as in Excel. For addition, input it like A1+B1, for subtraction A1-B1, for multiplication A1*B1, and for division A1/B1. The important note is that it must start with an equal sign.
Various Methods for Writing Sum Formulas in Hangul
When writing a sum formula in Hangul, you can use two methods. For calculating the sum of consecutive cells, use the SUM function like SUM(A1:A5), or for adding individual cells, you can write A1+A2+A3+A4+A5.
Calculating Composition Ratios and Handling Percentages in Hangul Tables
Basic Formula for Composition Ratio
Let’s look at composition ratio calculations frequently used in practice.
The composition ratio is an indicator showing the percentage each item takes up from the total, calculated by dividing the number of persons engaged in each industry by the total sum.
For instance, if the number of Korean cuisine practitioners is in cell C3 and the total sum is in cell C11, you would write a formula like C3/C11.

Converting to Percentage and Handling Decimal Places
A point to note in Hangul is that the percentage format does not automatically apply as it does in Excel.
Therefore, to display as a percentage, you must manually multiply the result by 100, writing the formula in the form of (C3/C11)*100.
Decimal place adjustments can be made in the format option of the formula editing menu, allowing for as many decimal places as desired for a neat output.

✅ Recommended Reading
⚡ If you want to speed up Hangul tasks, also take advantage of the Complete Shortcut Guide for Hangul.
Key Concepts of Relative and Absolute References
Understanding Relative and Absolute References
The most crucial yet confusing concepts in Hangul formula entry are relative and absolute references. Understanding these concepts correctly can address issues arising during formula copying and facilitate creating more efficient spreadsheets.
Relative referencing means the cell addresses referenced within a formula change relatively when the formula is copied to another cell. For instance, if a formula in cell C2 is copied to C3, the cell references within the formula also shift one row down.
The Necessity and Application of Absolute References
Conversely, absolute referencing means the referenced cell addresses remain fixed and do not change even if the formula is copied. Unlike Excel, which uses the dollar sign, Hangul uses the question mark symbol for this purpose.
Using Relative References with Question Mark in Hangul
Setting Relative References Using the Question Mark
The method of setting relative references in Hangul is unique. By using the question mark symbol, you can specify which part to relatively reference.
Typing C? means the column is fixed, and only the row is referenced relatively, while ?2 means the row is fixed, and only the column is referenced relatively.
Applying Relative References in Composition Ratio Calculations
Let's apply this in composition ratio calculations. In the formula dividing the number of persons engaged in each industry by the total sum, inputing (C?/C11)*100 allows the numerator to change according to each row, while the denominator C11 remains fixed. This ensures that when using auto-fill, the correct composition ratio for each row is calculated.

Copying Formulas Using the Auto-Fill Feature
How to Execute Auto-Fill
When applying Hangul addition formulas or other calculations to multiple cells, using the auto-fill feature can save significant time. Select the cell with the formula, designate the block area you wish to copy to, and then press the shortcut key A, and the formula will automatically be copied to the selected area.

Checking Relative References and Reviewing Results
If relative referencing is set correctly, cell references will automatically adjust to align with each row. For instance, if (C?/C11*100) is copied to row C3, it changes to (C3/C11)*100, accurately performing calculations according to each row's data.

It's advisable to always check the results after using auto-fill, as incorrect referencing may lead to unexpected results.
Practical Application of Variation Rate Calculation
Formula and Principle of Variation Rate Calculation
Another frequently used calculation in practice is the variation rate.
The variation rate indicates the rate of change from the previous period to the current period, calculated by subtracting the number of persons engaged this year from last year, dividing the result by last year's number, and multiplying by 100.
Writing a Variation Rate Formula

Expressed in a formula, it looks like (C? - B?) / B? * 100. Here, C? represents this year's data, and B? represents last year's data, using the question mark to set relative references. It's crucial to use parentheses around the subtraction to clarify the order of operations.
Setting Format for Variation Rate and Display Method
As with variation calculation, it's advisable to appropriately set decimal places. Typically, displaying one decimal place is sufficient, but it can be adjusted to more or less as needed.
Adding a Percent Sign and Setting Format
Method for Manually Adding a Percent Sign
In Hangul, unlike Excel, the percent sign is not automatically added, so it must be done manually. By placing the cursor next to the calculation result cell and directly entering the percent sign, you can use the auto-fill feature to apply the percent sign across all cells at once.



Uniform Format and Enhancing Readability
This method is particularly useful for displaying percentage data such as ratios or growth rates.
Ensure that when adding a percent sign, there is a natural spacing between the calculation result and the symbol for a polished look.
In the format settings, beyond the decimal places, you can adjust number alignment, font size, etc., to enhance the completeness of reports.
✅ Recommended Reading
📄 For a neat result when converting Hangul documents to PDFs, consult the Complete Guide to Converting Hangul to PDF.
Useful Tips When Utilizing Hangul Table Formulas
Identifying and Managing Formula Cells
There are several tips to keep in mind when using table formulas during Hangul file editing. First, cells with applied formulas display a small square around the result value, easily identifying which cells contain formulas.
Resolving Formula Errors
If an error occurs during formula writing, it's mostly due to unmatched parentheses, incorrect cell addresses, or improper operator usage. For complex formulas, writing them step by step and checking intermediate results is beneficial.
Utilizing Conditional Calculations
For conditional calculations, you may use the IF function. For example, writing something like IF(C?>B?, (C?-B?)/B?*100, 0) calculates the growth rate only if the current value is greater than the previous value and otherwise displays 0.
Efficiency and Application Fields of Hangul Document Work
Applications across Various Business Fields
Leveraging Hangul's formula entry function can enhance work efficiency in various fields. It allows for accurate calculations in Hangul reports requiring sales analysis or performance metrics without additional programs.
Document Automation and Systematic Management
When used in conjunction with Hangul's numbering feature for automatic generation of tables of contents or sequences, you can create more organized documents. Real-time processing of averages, totals, and ratio calculations is possible when data analysis is necessary, greatly increasing work speed.
Efficiency in Writing Regular Reports
This is particularly convenient for regularly created reports or analytical documents within a company, as once formulas are set, updating the data automatically refreshes the results.
Maximize Editing Efficiency with Inline AI for Hangul
If you are looking to further improve the efficiency of Hangul editing tasks, pay attention to the soon-to-be-released Hangul-specific features of Inline AI.
Inline AI Assistance Features for Hangul Editing
Inline AI is being developed as an AI agent concept used alongside the Hangul program for optimal utilization, similar to Chat GPT, by displaying it next to Hangul files.
Once released, it will optimize the writing of Hangul reports, proposals, and official documents, and it will automatically generate formats for Hangul formulas, numbering, and headers. Tasks such as automatically generating complex Hangul table structures, batch modifying Hangul titles and tables of contents, optimizing Hangul page settings and margins, and checking document style consistency become possible.
Currently Available Features of Inline AI
Currently, you can utilize various features related to editing Hangul files efficiently through Inline AI. You can leverage functionalities such as providing document writing guidelines, suggesting report structures, and supporting text content optimization.
💡 Start Right Now: If editing Hangul files is challenging, start by mastering table editing. Complete Guide to Hangul Table Editing
Experience Hangul-Specific AI
This article has explored how to use table formulas in the Hangul program, the concepts of relative and absolute references, and detailed composition ratio and variation rate calculations. Hangul formula entry is surprisingly powerful, adequately replacing the basic functionality of Excel, greatly enhancing work efficiency.
In particular, if you fully understand the relative reference concept using question marks, you can easily create complex spreadsheets and significantly save time with the auto-fill feature. Master Hangul table formulas and experience more efficient document processing.
If you frequently engage with complex HWP documents containing Hangul tables, formulas, and borders, the soon-to-be-released Hangul-specific features of Inline AI will significantly enhance your editing efficiency. The entire process from editing to converting and optimizing Hangul will become smarter, so look forward to it.
We will continue to share tips and diverse applications of the Hangul program to enhance work efficiency. We hope that editing Hangul files will no longer be a challenging and cumbersome task but rather a smart and efficient work tool.
🚀 If You Desire More Efficient Hangul Editing










