Formulas

  • Thread starter Thread starter chat
  • Start date Start date
C

chat

I'm sure the question I have is covered in Excel Help but I obviously don't
know how to ask the question so that it displays the answer so I'm hoping
someone here can help. I need to set a formula so that my answer cell looks
at two other cells and displays the greater number. Example - cell 1 says
10.00 and cell 2 says 30.00, I want cell 3 to look at both and put 30.00 in
the cell to show that it is the greater number.
My Question? How would I right the formula? What function would I use for
that?

Thanks for you help
Chat
 
Use the MAX() for picking the biggest from a reference.

A1 = 10
B1 = 20
C1 = MAX(A1,B1)

If this post helps click Yes
 
Thank you Jacob!! It works perfectly now.

Chat

Jacob Skaria said:
Use the MAX() for picking the biggest from a reference.

A1 = 10
B1 = 20
C1 = MAX(A1,B1)

If this post helps click Yes
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Formula to subtract a negative amount 2
Excel IF function in excel 2
Excel Need Countifs Formula Help 0
formula to look at current date and markdown date to give price 4
Help with Formula 2
Formula Question 3
excel macro 1
Formula Needed! 2

Back
Top