Free Handy Excel Tool for Accountants: Rounding
A short guide to rounding figures to the nearest thousand in Excel — comparing the custom number format and the ROUND function — plus a free tool that rounds and reformats selected cells in one step.

Xian Hui
23 June 2025
Quick answer
How do you round numbers to the nearest thousand in Excel?
To round numbers to the nearest thousand in Excel, you can apply a custom number format such as #,##0, which changes only how the figure looks, or use the ROUND function to divide by 1,000 and genuinely round the stored value. The formula method is preferred because the underlying number, not just its appearance, is rounded.
Free Handy Excel Tool for Accountants: Rounding
At a recent workshop with Wolters Kluwer Singapore, a participant shared the challenges she faced with rounding and number formatting. That conversation inspired this free tool and this short guide to rounding figures to the nearest thousand in Excel — a small task that trips up more spreadsheets than you might expect.
Why do accountants round to the nearest thousand?
Financial statements and management accounts are often easier to read when large figures are shown in thousands rather than in full. Presenting 1,234,567 as 1,235 keeps a report tidy and lets the reader focus on the numbers that matter. The catch is that there is more than one way to do this in Excel, and the two common methods behave very differently under the surface.
There are two approaches accountants typically reach for:
- Changing the number format so the figure only appears rounded.
- Using a formula so the figure is genuinely rounded.
How do you round using a custom number format?
The quickest method changes only how a number looks. Select your cells, go to Home > Number > Custom, and enter the format code below:
#,##0, → displays the number in thousandsEach trailing comma tells Excel to divide the displayed value by 1,000. So 1,234,567 shows as 1,235 on screen, while the cell still holds the full figure of 1,234,567.
This is fast, but it can cause confusion. Because Excel keeps processing the real, unrounded number, a column of "rounded" figures can appear not to add up, and any calculation built on those cells uses the full precision rather than the thousands you can see.
How do you round using a formula?
The second method changes the value itself. Divide the figure by 1,000 and wrap it in the ROUND function:
=ROUND(A1/1000,0) → rounds the value in A1 to the nearest thousandHere 1,234,567 becomes 1,235, 2,499,500 becomes 2,500, and 987,650 becomes 988. The stored value now matches what you see, so totals foot correctly and any downstream calculation uses the rounded figure. It takes a little more effort to set up, which is why many accountants still prefer it — the result is honest and predictable. ROUND is one of the top 5 Excel functions for accountants, and it sits alongside lookup tools such as XLOOKUP or VLOOKUP in an everyday toolkit.
A worked comparison shows the difference between what is displayed and what is stored:
| Original value | Displayed with #,##0, | Value still stored | With =ROUND(A1/1000,0) |
|---|---|---|---|
| 1,234,567 | 1,235 | 1,234,567 | 1,235 |
| 2,499,500 | 2,500 | 2,499,500 | 2,500 |
| 987,650 | 988 | 987,650 | 988 |
Which rounding method should you use?
The right choice depends on whether you only need the figure to look rounded or you need it to be rounded.
| Aspect | Custom number format (#,##0,) | ROUND formula (=ROUND(A1/1000,0)) |
|---|---|---|
| What it changes | Only how the number looks | The actual stored value |
| Underlying figure | Full precision kept | Genuinely rounded |
| Main risk | Totals can look wrong because Excel still uses the full number | None — what you see is what is calculated |
| Best suited to | Quick presentation | Reliable reporting and further calculations |
What does the free Handy Tool do?
Setting up the formula method by hand across a large model is tedious, so we built a free tool to do it for you. The Handy Tool adds the formulas that divide your numbers — or your existing formulas — by the rounding level and applies the ROUND function to the cells you select. It works on non-adjacent cells too: just hold Ctrl while clicking to build up your selection, and the tool handles the rest in a single step.
How does the formatting bonus handle negative numbers?
The tool also applies number formatting at the same time. As one workshop participant reminded us, accountants present negative numbers in parentheses — for example (1,235) — rather than with a minus sign. The tool formats your selected cells to follow that convention automatically, so your rounded figures come out in a familiar accounting layout without a second pass.
Where can you watch the demo and download the tool?
We are making this Handy Tool free. Watch the short demo to see it round and reformat a live worksheet in seconds:
Frequently asked questions
This information has been prepared for general informational purposes only and is not intended to be relied upon as accounting, tax, or other professional advice.
Related articles
articles
Artificial Intelligence in Excel
How accountants can push Excel further with artificial intelligence, from built-in tools such as Flash Fill and Analyze Data to third-party AI services connected through APIs and add-ins.
articles
Automating the Final Mile of Report Generation
A beginner-friendly guide to using VBA in Excel to automate the final mile of report generation — decoupling a finished report from its working file so it is accurate, well formatted and ready to share.
articles
Dynamic Array Formulas in Excel: Unleashing the Power
How Excel dynamic array formulas such as FILTER and XLOOKUP spill results across cells, so accountants can build scalable, error-resistant templates and audit working papers.