ABS Function – Absolute Value in Excel, VBA, Google Sheets

Download Example Workbook

Download the example workbook

This tutorial demonstrates how to use the Excel ABS Function in Excel to calculate the absolute value.
ABS Main
ABS Function Overview
The ABS Function Calculates the absolute value of a number. The absolute value is the number’s distance from zero. Example: The absolute value of -9 is 9.

To use the ABS Excel Worksheet Function, select a cell and type:
abs formula syntax

(Notice how the formula inputs appear)

ABS Function Syntax and Inputs:

=ABS(number)

number – A number.

Creating a absolute value graph

To create a cosine curve in Excel, we need to first choose our start and end points and then list out a lot of numbers. Let’s go from -1 up to 1 in increments of 0.1.

=ABS(C3)

ABS 01

Next, we’re going to add the 0.1 onto the angle and then calculate the cosine of that angle. Use the formula

=C3+$G$2

ABS 02

(the $ signs lock G2 so the formula will always reference that 0.1 even if we copy the formula!)

Now highlight both the new angle and cosine function that we’ve calculated, hold the handle, and drag it down until our angle reaches 1.

ABS 03

If you chose “Scatter with Smooth Lines”, you might notice the graph is a bit wobbly close to (0,0), and it does not create a sharp point as expected at x=0. This is because of our chosen increment of 0.1. To fix this, either use a smaller increment like 0.01 or choose “Scatter with Straight Lines”.

ABS in Google Sheets

The ABS Function works exactly the same in Google Sheets as in Excel:

Highlight the entire range of both angles and cosines, click insert, find the graphs and select “Scatter with Straight Lines”

ABS Google

ABS Examples in VBA

You can also use the ABS function in VBA. Type: application.worksheetfunction.abs(number)

Running the following VBA statements

Range("B2") = Abs(Range("A2"))
Range("B3") = Abs(Range("A3"))
Range("B4") = Abs(Range("A4"))

will create the following output

Vba ABS function

For the function arguments (number, etc.), you can either enter them directly into the function, or define variables to use instead.