I'm not experienced at all in Excel but trying to find smallest number located in designated cells (CELLS NOT IN A RANGE) excluding zeros. Don't know how to do an array formual. iS THERE a Simple way to do this?
I'm not experienced at all in Excel but trying to find smallest number located in designated cells (CELLS NOT IN A RANGE) excluding zeros. Don't know how to do an array formual. iS THERE a Simple way to do this?
Is there a pattern to the non-contiguous cells?
Is there anything between the cells?
Where there is a will there are many ways.
If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner
Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.
Hi
will work if cells are contiguous - can you arrange your data so that it is?![]()
=IF(MIN(B1:B6)=0,SMALL(B1:B6,2),MIN(B1:B6))
Ed
How about
=MIN($A$1,$B$2,$C$3,$D$4)
?
Martin
Thanks. Data was in noncontiguous cells...I tried and this seemed to help get me closer
=SMALL((A1,C1,E1),1+frequency((A1,C1,E1),0))
I get an error message when cells are empty but I'm much happier now. get some kinda NUM! error when everything empty.
You can try:
confirmed with CTRL+SHIFT+ENTER not just ENTER![]()
=MIN(IF(ISNUMBER(A1:E1),IF((MOD(COLUMN(A1:E1)-COLUMN(A1),2)=0)*(A1:E1),A1:E1)))
Gives you 0 if you have all blanks.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks