How to Remove Decimals Without Rounding in Excel (4 Methods)

Dataset Overview

We’ll use a dataset containing records of distances and the required times for participants in a competition.

how to remove decimals in Excel without rounding


Method 1 – Using the TRUNC Function

  • Add an extra column called Time (sec) without Decimal.

how to remove decimals in Excel without rounding

  • In cell E4, enter the following formula:
=TRUNC(D4,0)

Here, D4 represents the time value with decimals, and 0 specifies zero decimal places. Adjust the number (e.g., 1 or 2) if you need a specific decimal precision.

TRUNC function

  • Press ENTER and drag down the Fill Handle to apply the formula to other cells.

TRUNC function

This method removes decimals without altering the whole numbers.

TRUNC function

To demonstrate the results for the negative decimals we are assuming negative time values (only used for an example).
We can see that the TRUNC function also works for negative decimal values.

how to remove decimals in Excel without rounding


Method 2 – Using the INT Function

We have the same dataset.

how to remove decimals in Excel without rounding

  • In cell E4, insert the formula:
=INT(D4)

D4 represents the time value with decimals. The INT function converts decimal values to integers without rounding.

INT function

  • Press ENTER and drag down the Fill Handle.

INT function

This method provides the original time values without decimals.

how to remove decimals in Excel without rounding

The INT function does not work accurately for negative values as it rounds down.

INT function


Method 3 – Using the FLOOR Function

how to remove decimals in Excel without rounding

  • In cell E4, insert the formula:
=FLOOR(D4,1)

D4 is the time value with decimals. The significance of 1 ensures the result is a whole number multiple of 1.

FLOOR function

  • Press ENTER and drag down the Fill Handle.

FLOOR function

This method provides the original time values without decimals.

FLOOR function

For negative decimals, insert:

=FLOOR(D4,-1)

how to remove decimals in Excel without rounding

You can also use the FLOOR.MATH function instead of the Floor function to get the same results:

=FLOOR.MATH(D4)

FLOOR.MATH function

Read More: How to Get 2 Decimal Places Without Rounding in Excel


Method 4 – Rounding Down with the ROUNDDOWN Function

how to remove decimals in Excel without rounding

  • In cell E4, enter:
=ROUNDDOWN(D4,0)
  • Adjust the second argument (e.g., 1 or 2) for specific decimal places.

ROUNDDOWN function

  • Press ENTER and drag down the Fill Handle.

ROUNDDOWN function

ROUNDDOWN function

The ROUNDDOWN function works similarly for negative decimal values:

how to remove decimals in Excel without rounding


Practice Section

For doing practice by yourself we have provided a Practice section in a sheet labelled Practice.

Practice


Download the Workbook

You can download the practice workbook from here:


Related Articles


<< Go Back to Stop Rounding | Rounding in Excel | 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