Formula help

c_m

Well-known Member
Joined
May 29, 2008
Messages
836
Hello,

Can someone help me to figure out a formula that will find the maximum value of all negative values in the range and
another formula that will find the minimum value of all positive values in the range.
(There is no cell with value zero in the range if that helps at all)

Thanks
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
<html><head><title>Excel Jeanie HTML</title></head><body>

<!-- ######### Start Created Html Code To Copy ########## -->

Excel Workbook
ABC
12Min +1
25Max --1
310
41
56
6-1
7-8
89
9-4
105
Sheet1




<!-- ######### End Created Html Code To Copy ########## -->

</body></html>
 
Upvote 0
hi try the following entered as array formulas (hit Crtl+Enter+Shift instead of just Enter)

Max of negatives:
=MAX(IF(range<0,range,FALSE))

Min of positives:
=MIN(IF(range>0,range,FALSE))
 
Upvote 0
I came up with same formula but
CTRL+SHIFT+ENTER is what I was missing

Thankyou
 
Upvote 0

Forum statistics

Threads
1,214,981
Messages
6,122,565
Members
449,089
Latest member
Motoracer88

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
Back
Top