Averge and or Maximum

  • Thread starter Thread starter PCOR
  • Start date Start date
P

PCOR

I have in col A a series of numbers to which a new entry is added from time
to time
I would like to have a cell to the right of this col display the smallest
and an other cell display the largest number in col A
I would appreciate any help I can get
Ian
 
Try these two:

=MAX(A:A)

=MIN(A:A)
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================

I have in col A a series of numbers to which a new entry is added from time
to time
I would like to have a cell to the right of this col display the smallest
and an other cell display the largest number in col A
I would appreciate any help I can get
Ian
 
PCOR,

Try Min(A:A) and Max(A:A) This assumes that there is nothing else in column A. If there is, then use something like: Min(a4:a2000) or whatever row numbers make sense.

Art
 

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