How do I...

  • Thread starter Thread starter jfe
  • Start date Start date
J

jfe

I have created spreadsheets to track baseball (MLB and College) and
basketball (NBA and college) records and standings. I would like be
able to track the record of a given set of games say the last 10
games. Is there a formula, function, macro or what ever to be able to
do this without manually updating the cell address?

any help would be greatly appreciated

JFE
 
JFE,

There is almost certainly a reasonably straightforward way to do this,
but you will have to give a bit of an outline or example of how the
date is ordered in your spreadsheet for someone to make a usefull
suggestion.

Send me a sample of the sheet if you like.

TK
 
=IF(ISERROR(OFFSET(A1,COUNTA(A:A)-10,)),"not enough
rows",SUM(OFFSET(A1,COUNTA(A:A)-10,):OFFSET(A1,COUNTA(A:A),)))

sums the last 10 rows in column A, assuming no gaps in the data

Regards

Trevor
 

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