Minimum formula help.

de8212

Board Regular
Joined
Apr 30, 2002
Messages
81
This has to be easy (for most of the members here) but I can't figure it out.

I have a few columns with various #'s in them but occasionally there will be a zero. I want a minimum formula that will not display any zeros.

Any help is appreciated.
 

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.
You can use an array formula like this

=MIN(IF(A1:C100<>0,A1:C100))

confirmed with CTRL+SHIFT+ENTER

Thanks. What does CTRL+SHIFT+ENTER do that Enter doesn't?


I got it to work with your help but the actual formula appears as

{=MIN(IF(A1:C100<>0,A1:C100))}

I guess excel auto corrected it or something?????
 
Upvote 0
This has to be easy (for most of the members here) but I can't figure it out.

I have a few columns with various #'s in them but occasionally there will be a zero. I want a minimum formula that will not display any zeros.

Any help is appreciated.
Here's another one assuming there won't be any negative numbers.

Book1
ABC
1746723
2183382
332029
4106331
512650
Sheet1

=SMALL(A1:C5,COUNTIF(A1:C5,0)+1)

Returns 10
 
Upvote 0

Forum statistics

Threads
1,224,517
Messages
6,179,234
Members
452,898
Latest member
Capolavoro009

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