Skip to main content

How to round range of numbers to even in Excel?

What is round to even in Excel? Round to even also called bankers rounding, basically it is just like normal rounding, except when the number to be rounded on is number 5. If the digit before the 5 is odd, you should round up, and if the digit before the 5 is even, you should round down.

For example, 23.345 round to even on the percentile would be 23.34. and 12.335 round to even on the percentile would be 12.34.

In this article, I will talk about how to do the bankers rounding in Excel.

Round numbers to even with User-Defined Function

Round numbers to even with VBA code

Round numbers to even with Kutools for Excel


arrow blue right bubble Round numbers to even with User-Defined Function

You can use the following defined function to round numbers to even in Excel. Please do as follows:

1. Select the numbers that you want to round to even.

2. Then Hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.

3. Click Insert > Module, and paste the following macro in the Module Window.

Function BankersRound(num, precision)
BankersRound = Round(num, precision)
End Function

4. Save the code, and enter the formula = bankersround(a1,2) into the adjacent blank cell. See screenshot:

doc-round-to-even1

5. Then press Enter key. And select the cell B1, then drag the fill handle over to the range that you want to contain this formula. See screenshot:

doc-round-to-even2


arrow blue right bubble Round numbers to even with VBA code

If you don’t want to use the defined function, the following VBA code also can help you. Do as this:

1. Select the range that you want to round to even.

2. Then Hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.

3. Click Insert > Module, and paste the following code in the ModuleWindow.

Sub RoundToEven()
'Update 20131107
Dim rng As Range
Dim WorkRng As Range
Dim intNumberOfDecimal As Integer
On Error Resume Next
xTitleId = "KutoolsforExcel"
Set WorkRng = Application.Selection
Set WorkRng = Application.InputBox("Range", xTitleId, WorkRng.Address, Type:=8)
intNumberOfDecimal = Application.InputBox("NumberOfDecimal", xTitleId, Type:=1)
Set WorkRng = WorkRng.SpecialCells(xlCellTypeConstants, xlNumbers)
For Each rng In WorkRng
    rng.Value = Round(rng.Value, intNumberOfDecimal)
Next
End Sub

4. Then press the F5 key to run this code, in the prompt box, enter the number of decimals that you want to round. See screenshot:

doc-round-to-even3

5. Then click OK, all of the selected numbers have been rounded to even. See screenshots:

doc-round-to-even4 -2 doc-round-to-even5

arrow blue right bubble Round numbers to even with Kutools for Excel

Neither the user-defined function nor the VBA code can you feel so complex, I can introduce you an easy way to solve it. With Round without formula of Kutools for Excel, you can quickly round a range of numbers to even.

Kutools for Excel includes more than 300 handy Excel tools. Free to try with no limitation in 30 days. Get it Now.

After installing Kutools for Excel, you can do as follows:

1. Highlight the range you want to round to even.

2. Click Kutools > Round, see screenshot:

doc-round-to-even6

3. In the Round without Formula dialog box, enter the decimal place that you need, and then choose Round to Even under Option, and you can preview the result from the Preview Pane. See screenshot:

doc-round-to-even7

4. Then click OK or Apply, all of the numbers will be rounded to even by 2 decimal.

Click Round to Even to know more about this feature.

Related article:

Round / round up / round down a range of cell numbers in Excel

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (2)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Is "rounding to even" working properly? Why does it round 120.245 to 120.24, and not 120.25 as it should?
This comment was minimized by the moderator on the site
120.245 should be rounded to 120.24 when keeping 2 decimal places.
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations