I'm trying to keep the =MIN from returning 0 as the minimum value. Is this possible?
B Blade Feb 1, 2005 #1 I'm trying to keep the =MIN from returning 0 as the minimum value. Is this possible?
J JulieD Feb 1, 2005 #2 Hi Blade try =SMALL(C1:C10,COUNTIF(C1:C10,0)+1) where C1:C10 is the range you're looking for the minimum in. Cheers JulieD
Hi Blade try =SMALL(C1:C10,COUNTIF(C1:C10,0)+1) where C1:C10 is the range you're looking for the minimum in. Cheers JulieD
P Peo Sjoblom Feb 1, 2005 #3 If there are only positive values =LARGE(A1:A10,COUNTIF(A1:A10,">0")) if there can be negative values =MIN(IF(A1:A10<>0,A1:A10)) note that the latter formula MUST be entered with ctrl + shift & enter Regards, Peo Sjoblom
If there are only positive values =LARGE(A1:A10,COUNTIF(A1:A10,">0")) if there can be negative values =MIN(IF(A1:A10<>0,A1:A10)) note that the latter formula MUST be entered with ctrl + shift & enter Regards, Peo Sjoblom
B Blade Feb 1, 2005 #4 Thanks, this works great when selecting a range like A1:A:10 Is there different syntax for selecting individual cells like A1, A3, A5, A7 where A1, A3, A5, A7 represent values for a separate calculation?
Thanks, this works great when selecting a range like A1:A:10 Is there different syntax for selecting individual cells like A1, A3, A5, A7 where A1, A3, A5, A7 represent values for a separate calculation?
M Myrna Larson Feb 2, 2005 #5 Here's one way: =MIN(IF(A1:A7<>0,IF(MOD(ROW(A1:A7),2)=1,A1:A7))) This is an array formula and must be entered with CTRL+SHIFT+ENTER.
Here's one way: =MIN(IF(A1:A7<>0,IF(MOD(ROW(A1:A7),2)=1,A1:A7))) This is an array formula and must be entered with CTRL+SHIFT+ENTER.