=min(if

Mel13

New Member
Joined
Dec 22, 2009
Messages
3
The following formula is giving me an answer of zero:

=MIN(IF(H3:H8762="<=0.2",J3:J8762))

I need to find the minimum value from all the numbers in column J where the values in column H are less than or equal to 0.2

I am also using CTRL+SHIFT+ENTER

Can anyone help me please? Thank you
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
That works now! Thank you so much

Now, I need to do the same thing, but use an inbetween criteria, where the value must be: >0.2 and <=0.3 and it's not working

This is what I entered:
=MIN(IF(MetData!H4:H8763>0.2,<=0.3,MetData!J4:J8763))
 
Last edited:
Upvote 0
That works now! Thank you so much

You are welcome.

Now, I need to do the same thing, but use an inbetween criteria, where the value must be: >0.2 and <=0.3 and it's not working

This is what I entered:
=MIN(IF(MetData!H4:H8763>0.2,<=0.3,MetData!J4:J8763))

You can use two IF's... Still to be confirmed with control+shift+enter:
Code:
=MIN(
   IF(MetData!H4:H8763>0.2,
     IF(MetData!H4:H8763<=0.3,
       MetData!J4:J8763)))
 
Upvote 0

Forum statistics

Threads
1,214,826
Messages
6,121,795
Members
449,048
Latest member
greyangel23

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