tags:

views:

38

answers:

2

I'd think there'd be something to do this in Excel, because it seems so basic... BUT:

I have two cells and I need to compare them and return the lower of the two. This is very easily done with the following:

=IF(A1 > A2, A2, A1)

But in a complex formula, this seems insanely unnecessary.

It's also possible to do with:

=SMALL(A1:A2)

But of course my cells are not adjecent and don't make a range.

Thoughts?

+3  A: 

You want to use the MIN() function.

VeeArr
Gets the answer check for the link :) thanks
aronchick
A: 

The Excel Min function:

=MIN(A1,A2)

dublev