Formula to compare 2 cells

  • Thread starter Thread starter lvn-xl
  • Start date Start date
L

lvn-xl

I need a formula to compare 2 cells. I want the result of the highest value
cell to show up in the cell with the formula. Either cell can be the highest
value cell at any given time.

For example, cell BK27 has a value of 25
Cell BK43 has a value of 29
I want cell BK22 (which has the formula) to show the value of BK43 (29) in it.

However, if cell BK27 were to change to 40, I would want the value of 40 to
show in BK22.

Does that make sense?
 
The MAX function will return the largest number in a range. So, in BK22, use
the formula

=MAX(BK30:BK40)

Change the BK30:BK40 reference to the appropriate range reference.


--
Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2008
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)
 
=MAX(BK27,BK22)

you may want to add an If() to stop 0 showning for no values in the cells:

=IF(COUNT(BK27,KB22),MAX(BK27,BK22),"")

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 
Thank you so much, Sandy. Your If statement worked perfectly. You are
awesome!!!
--
Thanx,


Sandy Mann said:
=MAX(BK27,BK22)

you may want to add an If() to stop 0 showning for no values in the cells:

=IF(COUNT(BK27,KB22),MAX(BK27,BK22),"")

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 
Glad that you found it usefull. Thanks for the feedback.

--
Regards,

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk


lvn-xl said:
Thank you so much, Sandy. Your If statement worked perfectly. You are
awesome!!!
 
Back
Top