Compare two values

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, I need to compare two values (in adjacent cells), and select the higher
of the two to perform an additional function on ?
Many Thanks Graham
 
use IF function

Eg: Cell A1: 25, Cell B1: 30
Cell C1: =IF(A1>B1,A1+10,B1+10)

Please do rate
Thanks in advance
 
Mon, 23 Jul 2007 02:56:01 -0700 from Graham
Hi, I need to compare two values (in adjacent cells), and select the higher
of the two to perform an additional function on ?

=MAX(A1,A2)+55
 
Many Thanks, a little more involveed than I first thought, but at least I now
know where to start from.
 
Back
Top