Can't find formula for largest value in multiple cells

T

telewats

I'm trying to create a spreadsheet that pulls data from another
spreadsheet in the same file as well as data from other files. In the
attached spreadsheets, I have fields that find the largest value based
on dates entered in multiple cells (ie. In my first spreadsheet, I have
formulas to find the largest date on that page (=largest(xx:xx), and on
my 'master' spreadsheet, I want to find the largest date from the
formulas I just mentioned). The problem I'm finding is that excel won't
let me include more than two cells in my last formula. It tells me I'm
entering too much data. Can someone tell me how to do this?
 
C

CLR

=LARGE(A1:C50,1)
or
=MAX(A1:C50)

Either formula will return the largest value from the range of A1 through
C50............

Vaya con Dios,
Chuck, CABGx3
 
T

telewats

This is good to know. Thanks for the info.

What if I want to use cells that aren't in conjunction with one
another, ie. B12 & B40 & B65? Or if I want to pull data from multiple
spreadsheets?
 
C

CLR

=MAX(B12,B40,B65)
=MAX(Sheet1!B12,Sheet2!B40,Sheet3!B65)

Vaya con Dios,
Chuck, CABGx3
 
B

Bernard Liengme

Click on B12; hold CTRL, click on B40 then on B65; type mydata in Name box
and pres ENTER
Use =MAX(mydata) or LARGE(mydata,1) ---- you can also use LARGE(mydata,2)
for next largest

Multiple sheets: MAX(MAX(Sheet1!A1:A10), MAX(Sheet2!B2:B20)
Or expand on the name method
best wishes
 

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

Top