Highest ABS in Range

erock24

Well-known Member
Joined
Oct 26, 2006
Messages
1,161
This should be easy but I'm having trouble.
How can I pull the highest absolute value out of a range?
Thanks for your time and help.
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.

Oorang

Well-known Member
Joined
Mar 4, 2005
Messages
2,071
The highest ABS in a range is going to be the same as =ABS(MAX(A:A)) because there is no scenario where the results will differ if you apply abs to each number then max, or vice versa.
 
Upvote 0

Jonmo1

MrExcel MVP
Joined
Oct 12, 2006
Messages
44,061
The highest ABS in a range is going to be the same as =ABS(MAX(A:A)) because there is no scenario where the results will differ if you apply abs to each number then max, or vice versa.

Not True
personal.xls
ABCD
1198
2-5
32
48
5-9
Sheet1
 
Upvote 0

facethegod

Well-known Member
Joined
Aug 1, 2006
Messages
767
Try this fill in Range with the range needed. Confirm with Ctrl + Shift +Enter, not just enter

Code:
=INDEX(Range,MATCH(MAX(ABS(Range)),ABS(Range),0),1)
 
Upvote 0

erock24

Well-known Member
Joined
Oct 26, 2006
Messages
1,161
Jonmo1

thanks. I always forget about ctrl+shift+enter. Works perfect. Also, it turns out I had an #N/A deep within my range, so that was messing things up as well. :rolleyes:

0orang,

Your formula only returns the highest value of the positive numbers.

Thank you all for your time and help.
 
Upvote 0

Forum statistics

Threads
1,190,666
Messages
5,982,173
Members
439,763
Latest member
leighsha101

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Top