find the largest value in column, put in a cell

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

Guest

If value in cell a1 = 1 through 149, display "0" in a2
If vallue in cell a1 = 150 or greater, display actual value of a1, in cell a2
 
JcR said:
If value in cell a1 = 1 through 149, display "0" in a2
If vallue in cell a1 = 150 or greater, display actual value of a1, in
cell a2
In A2:
=IF(A1<150,0,A1)
 
JcR said:
If value in cell a1 = 1 through 149, display "0" in a2
If vallue in cell a1 = 150 or greater, display actual value of a1, in
cell a2
Whoops!!,
Might have the wrong question here,
I will answer your Title question,

=MAX(A2:A8)

this will give you the max number in the range A2:A8
 

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

Back
Top