September 23, 2023

How to use the Excel TRUNC function

The TRUNC function truncates a number to a specified number of decimal places. The key factor that makes TRUNC different from other functions that remove decimal places is that the TRUNC function does not round values. If you use TRUNC to remove all the decimals from the value 4.68, the result is 4.

Syntax: =TRUNC (number, [num_digits])

The TRUNC function syntax has the following arguments:

    1. Number (required argument) – This is the number we wish to truncate.
    2. Num_digits (optional argument) – This is a number that specifies the precision of the truncation. If kept blank, it will take 0 as the default value.

Example: Let’s look at some Excel TRUNC function examples and explore how to use the TRUNC function as a worksheet function in Microsoft Excel:

TRUNC function - How to use the Excel TRUNC function

Syntax:  =TRUNC(A2)

Result:

Excel TRUNC function - How to use the Excel TRUNC function

Based on the Excel spreadsheet above, the following TRUNC examples would return:

Syntax: =TRUNC(A2)
Result: -8

Syntax: =TRUNC(A2)
Result: 8

Syntax: =TRUNC(A2)
Result: 0

Syntax: =TRUNC(A2)
Result: 0

Syntax: =TRUNC(A2)
Result: -4

Syntax: =TRUNC(A8,B8)
Result: 257000

Syntax: =TRUNC(A8,B8)
Result: -70.68

Syntax: =TRUNC(A8,B8)
Result: 76.5

Syntax: =TRUNC(A8,B8)
Result: 840

Syntax: =TRUNC(A8,B8)
Result: 500

Syntax: =TRUNC(A8,B8)
Result: 4000

Syntax: =TRUNC(A8,B8)
Result:  -90

Note:

  1. TRUNC and INT are similar functions because they both return the integer part of a number. The difference is that TRUNC merely truncates a number, but INT rounds off a number.

However, for positive numbers, as well as when TRUNC uses 0 as the default for num_digits, both functions will return the same results.

With negative numbers, the results can be different. =INT(-2.1) returns -3, because INT rounds down to the lower integer. =TRUNC(-2.1) returns -2.

READ:  How to use the Excel ASINH function

Leave a Reply

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