last value in a column

  • Thread starter Thread starter chaz
  • Start date Start date
C

chaz

I have a checkbook ledger in an excel file. As the number
of records in the sheet has grown, I have to scroll down
to the end of the ledger to find the current balance. Is
there a way to "dynamically" find the last value in a
column of data, keeping in mind that the row location of
the last value will change over time?
 
Hi

Do you want to go to the cell or just view its contents?
To go to the cell click on a single cell inthe column and then double-click
its bottom border. This will take you to the last cell in the column.
To see what is in the last cell in the column use something like:
=INDEX(G:G,COUNTIF(G:G,"<>"),1)
 
=LOOKUP(9.99999999999999E+307,A:A)

would return the last numerical value from column A.
 

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