if range is greater than

muizac

Board Regular
Joined
Oct 24, 2006
Messages
50
Hello,

Quick question - I'm trying to find if *any* cell in range 02 - cf2 is greater than 69.

Would anyone mind expaining what I'm doing wrong with this formula?


=IF(O2:CF2>=70,"yes","no")

Cheers,

Andrew
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Fantastic. Works great.

Ideally I return a different value for true, showing the highest value in the *any* of the cell range, could you pelase tell me what edit to make to the formula?

ie) The followign would return '90'

a1, 1b, 1c
80, 90, 60
 
Upvote 0
max(range)

? or, if min you want to show is 70:

max(range,70)

or:

if(max(range)>=70,max(range),"N")
 
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,821
Members
449,049
Latest member
cybersurfer5000

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