Functions

  • Thread starter Thread starter John
  • Start date Start date
J

John

I am looking for a function to look at a column of numbers, select the
largest number, and copy it into another cell. Does such a function exist?
 
you might like to explore the opportunities afforded by max

=max(a1:a100)

Mike
 
You can skip the copy, as it will not be necessary. In your destination cell
put the following function:

=MAX(A1:A25)

Replace the data range with the appropriate range or ranges.

Hope this helps...
 
Thanks, this worked.

Kevin B said:
You can skip the copy, as it will not be necessary. In your destination cell
put the following function:

=MAX(A1:A25)

Replace the data range with the appropriate range or ranges.

Hope this helps...
 

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