How to find the maximum / minimum absolute values in Excel?
In Excel, we can use the Max or Min function to find out the largest or smallest values in a range of cells. But here, if your worksheet is populated with positive numbers and negatives, and you need to find out the maximum absolute values or minimum absolute values, the Max or Min function will not help you. Today, I will talk about some quick tricks for you to solve this task.
Find the maximum / minimum absolute values with Formulas
Find the maximum / minimum absolute values with User Defined Function
Find the maximum / minimum absolute values with Kutools for Excel
Sum the absolute value with Kutools for Excel
Find the maximum / minimum absolute values with Formulas
The following small array formulas can help you to find out the largest absolute value and the smallest absolute value.
1. In a blank cell, enter this formula =Max(ABS(A1:D10)), see screenshot:
2. Then press Ctrl+Shift+Enter keys, and the largest absolute values will be displayed in the cell.
If you want to find out the smallest absolute value in a range of cells, you can apply this formula: =Min(ABS(A1:D10)), and remember to press Ctrl+Shift+Enter keys to get the correct result.
Note: In the formula, A1:D10 is the range you want to select the largest or smallest value from. You can change it as your need.
Find the maximum / minimum absolute values with User Defined Function
You can also get the maximum or minimum absolute values by creating a user defined function, please do as the following steps:
1. Hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.
2. Click Insert > Module, and paste the following code in the Module window.
Function MaxABS(WorkRng As Range) As Double
'Update 20130907
Dim arr As Variant
arr = WorkRng.Value
For i = 1 To UBound(arr, 1)
For j = 1 To UBound(arr, 2)
arr(i, j) = VBA.Abs(arr(i, j))
Next
Next
MaxABS = Application.WorksheetFunction.Max(arr)
End Function
Function MinABS(WorkRng As Range) As Double
Dim arr As Variant
arr = WorkRng.Value
For i = 1 To UBound(arr, 1)
For j = 1 To UBound(arr, 2)
arr(i, j) = VBA.Abs(arr(i, j))
Next
Next
MinABS = Application.WorksheetFunction.Min(arr)
End Function
3. Then save this code and input this formula =MaxABS(A1:D10) into an empty cell to get the largest absolute value. See screenshot:
4. And then press Enter key, you will get the largest absolute value. See screenshot:
You can get the smallest absolute value by applying this formula =MinABS(A1:D10) after pasting the above code.
Note: In the formula, A1:D10 is the range you want to select the largest or smallest value from. You can change it as your need.
Find the maximum / minimum absolute values with Kutools for Excel
Kutools for Excel, with more than 300 handy functions, makes your jobs more easier. |
After installing Kutools for Excel, please do as below:(Free Download Kutools for Excel Now!)
1. You had better to make a copy of the data first, and then select data and click Kutools > Content > Change Sign of Values. See screenshot:
2. In the popping dialog, check , and click Ok and then all the negative values have been converted to positive. See Screenshots:
![]() |
![]() |
3. Select a blank cell and type formula =Max(A1:D5)(A1:D5 is the data range you use, and you can use =Min(A1:D5)to find the minimum value) to find the maximum value. See screenshots:
![]() |
![]() |
![]() |
Find Max or Min Absolute Value
Sum the absolute value with Kutools for Excel
In some cases, you have a range of values both including negative and positive values, but you want to sum their absolute values up, how can you quickly get it done? With Kutools for Excel, you can quickly handle it by the Sum absolute values function.
After installing Kutools for Excel, please do as below:(Free Download Kutools for Excel Now!)
1. Select a blank cell which will output the summing result, and click Kutools > Formula Helper > Formula Helper. See screenshot:
2. In the popping Formulas Helper dialog, select Sum absolute values from Choose a formula section, then click icon to select the cells you want to sumup, and then click Ok to close dialog, and then you can see the sumup result. See screenshot:
![]() |
![]() |
Sum Absolute Value In A Range
Related articles:
How to find the max or min value for each day in an Excel range?
How to find max or min value based on unique values in Excel?
Best Office Productivity Tools
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...
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!
