How to Use the ABS Function in Excel – 12 Examples

This is an overview:

Use of ABS Function in Excel

 

Introduction to ABS Function

Function Objective:

The ABS function is used to get the absolute value of a number. You will get only a positive number.

Syntax:

=ABS(number)

Argument:

ARGUMENTS REQUIRED/OPTIONAL EXPLANATION
number Required The species number for which we want to get the absolute value

Returns:

A number with a positive sign.

 


The sample dataset showcases of a store’s profit in the 1st six months of 2021.

To get the absolute results in this dataset:

Data set to Use Excel ABS Function

Step 1:

  • Add a column: Absolute Value.

Step 2:

  • Enter the ABS function in D5. Use C5 as the argument. The formula is:
=ABS(C5)

Data set to Use Excel ABS Function

Step 3:

  • Press Enter.

Step 4:

  • Drag down the Fill Handle to see the result in the rest of the cells.

Data set to Use Excel ABS Function

All objects are positive in the Result section. The ABS function affects the negative numbers only. It has no impact on positive numbers and zeros. It converts negative numbers into positive ones.


Example 1 – Find the Absolute Variance Using the ABS Function

Step 1:

  • Enter the actual and expected revenue:

Step 2:

To see the difference between the actual and expected revenue in the Error column:

  • Enter the formula in the Error column. Drag down the Fill Handle to see the result in the rest of the cells.
=D5-C5

Find Absolute Variance Using ABS Function

This difference is the variance. There both positive and negative values.

Use the ABS function to see the absolute variance:

Step 3:

  • Enter the ABS function in the Error column:
=ABS(D5-C5)

Find Absolute Variance Using ABS Function

Step 4:

  • Drag down the Fill Handle to see the result in the rest of the cells.

The absolute variance is displayed.


Example 2 – Get the Absolute Variance with a Condition using the ABS Function

Find the absolute variance with conditions using the SUMPRODUCT function with the ABS function.

Step 1:

  • Add a column (Result) to see the conditional variance.

Step 2:

  • Enter the formula in E5:
=SUMPRODUCT(--(ABS(D5-C5)>100))

Get Absolute Variance with Condition 9n Excel

A condition is set: 1 for a variance value greater than 100. Otherwise, 0.

Step 3:

  • Press Enter.

Step 4:

  • Drag down the Fill Handle to see the result in the rest of the cells.

Get Absolute Variance with Condition 9n Excel

This is the output.


Example 3 – Find the Square Root of a Negative Number using the ABS Function

Use the SQRT function and the ABS function.

Step 1:

  • This is the sample dataset.

Step 2:

  • Enter the SQRT formula in C5:
=SQRT(B5)

Square Root of a Negative Number by ABS Function

Step 3:

  • Press Enter and drag down the Fill Handle.

The SQRT function displays errors for the negative numbers.

Step 4:

  • Use the ABS function:
=SQRT(ABS(B5))

Square Root of a Negative Number by ABS Function

Step 5:

  • Press Enter and drag down the Fill Handle.

Square Root of a Negative Number by ABS Function

The square root is displayed, including the negative values.


Example 4 – Using the ABS Function to Find the Tolerance in Excel

Use the ABS function and the IF function.

Step 1:

  • Create a column to display the result.

 

Step 2:

  • Enter the formula in E5:
=IF(ABS(D6-C6)<=100,"OK","Fail")
  • Tolerance was set to 100.

ABS Function to Find Tolerance

Step 3:

  • Press Enter.

Step 4:

  • Drag down the Fill Handle to see the result in the rest of the cells.

ABS Function to Find Tolerance

Cells below the tolerance level show OK. Otherwise, Fail.


Example 5 – SUM Numbers Ignoring Their Signs with the ABS Function

Step 1:

  • Find the sum of these random numbers:

Step 2:

  • Enter the formula in B12:
=SUM(ABS(B5:B10))

SUM Numbers Ignoring Their Signs with ARRAY Formula in Excel

Step 3:

  • Press Ctrl+Shift+Enter, as this is an array formula.

SUM Numbers Ignoring Their Signs with ARRAY Formula in Excel

The total is displayed without signs.

Read More: How to Sum Absolute Value in Excel


Example 6 – Return an Absolute Value of Negative Numbers and Identify the Non-negative numbers

Step 1:

  • Insert a column to see the result.

Step 2:

  • Enter the formula in C5:
=IF(B5<0,ABS(B5),"Positive")

Identify Negative value using ABS function

Step 3:

  • Press Enter.

Step 4:

  • Drag down the Fill Handle to see the result in the rest of the cells.

You get the absolute value for negative numbers. For non-negative numbers Positive is displayed.

Read More: Changing Negative Numbers to Positive in Excel


Example 7 – SUM the Negative Numbers Only with the ABS Function in Excel

Use the SUM and the IF functions here.

Step 1:

  • To sum the negative numbers in the data below:

Step 2:

  • Enter the formula in C12:
=SUM(IF(C5:C10<0,ABS(C5:C10),0))

Step 3:

  • Press Enter.

Identify Negative value using ABS function

This is the output.


Example 8 – Get the Average of Absolute Values using the Excel ABS Function

Use the Average function.

Step 1:

  • To find the average profit in the dataset below:

Step 2:

  • Enter the formula in C12:
=AVERAGE(ABS(C5:C10))

Get Average Absolute Values Applying ABS Function

Step 3:

  • Press Ctrl+Shift+Enter.

Get Average Absolute Values Applying ABS Function

This is the output.


Example 9 – Find the Maximum/Minimum Absolute Value in Excel

The dataset showcases temperatures in different states. To find the maximum absolute temperature, use the MAX and the ABS functions.

=MAX(ABS(C5:C10))

To find the minimum absolute value, use the MIN and the ABS functions.

=MIN(ABS(C5:C10))

Using MAX and MIN Functions to Find Maximum and Minimum Absolute Value


Example 10 – Calculate the Closest Even Number of Given Numbers

To calculate the closest even number of the given numbers, use the IF, EVEN and ABS functions.

Use the following formula:

=IF(ABS(EVEN(C5)-C5)>1,IF(C5 < 0, EVEN(C5)+2,EVEN(C5)-2),EVEN(C5))

Calculating the Closest Even Number of Given Numbers


Example 11Identify the Closest Value from a List of Values in Excel

To identify the closest value to  a specific value from a given list, use the INDEX, MATCH, MIN and ABS functions.

=INDEX(C5:C10,MATCH(MIN(ABS(F4-C5:C10)),ABS(F4-C5:C10),0))

Identifying Closest Value from a List of Values in Excel


Example 12 – Calculate the Absolute Value Using the ABS Function in VBA

Use the ABS function in VBA Macros.

Step 1:

  • Go to the Developer tab.
  • Select Record Macros.

Calculate Absolute Value Using ABS Function in VBA Macros

Step 2:

  • Set Absolute as the Macro name.
  • Click OK.

Step 3:

  • Enter the VBA code.
Sub Absolute()
Rng = Selection
XML = ""
For Each i In Rng:
n = Abs(i)
X = X + Str(n) + vbNewLine + vbNewLine
Next i
MsgBox X
End Sub

Calculate Absolute Value Using ABS Function in VBA Macros

Step 4:

  • Select the cells.

Step 5:

  • Press F5.

Calculate Absolute Value Using ABS Function in VBA Macros

The selected range is C5:C8.


Things to Remember

  • In an array function, press Ctrl+Shift+Enter instead of Enter.
  • Only numeric values can be used with this function.

Frequently Asked Questions

1. Can the ABS function be nested within other functions?

Yes, you can use it as part of a larger formula.

2. How does the ABS function handle zero?

The ABS function treats zero as a non-negative number, so ABS(0) will return 0.


Download Practice Workbook

Download the practice workbook.


ABS Function in Excel: Knowledge Hub


<< Go Back to Excel Functions | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Alok Paul
Alok Paul

Alok Paul has completed his B.Sc. in Electronics and Telecommunication Engineering from East West University. He has been working on the ExcelDemy project for more than 2 years. He has written 220+ articles and replied to numerous comments. He is experienced in Microsoft Office, especially in Excel. He also led some teams on Excel and VBA content development. He has a keen interest in Advanced Excel, Data analysis, Excel Pivot Table, Charts, and Dashboard. He loves to research... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo