excel - Finding minimum difference between two cells over range? -
given values below...
b c d e (f) (g) abs() blake ... 292 ... 290 ... 291 ... 285 0 -2 +1 -6 6 alan ... 262 ... 253 ... 252 0 -9 -1 9
...how find minimum difference between pairs of cells (b:c, c:d, d:e, etc), goal find "most weight lost in 1 week?"
-6
, -9
answers i'm looking for.
this office weight loss challenge thingy .. , i'm not incredibly familiar excel. in advance!
-6 , -9 answers i'm looking for.
use 1 in g1
:
=min(if(c1:e1<>"",c1:e1-b1:d1))
this array formula, type formula press ctrl+shift+enter. curly brackets automatically appear @ start , end of formula. drag formula down.
if you'd returns abs
of min value, use:
=abs(min(if(c1:e1<>"",c1:e1-b1:d1)))
with array entry
Comments
Post a Comment