Share via

How to pick up the last total in a column of totals which continually gets added to

John Coluccio 20 Reputation points
2026-02-06T01:30:31.88+00:00

I have two sheets. First one is a list of transactions. Second sheet keeps a running total of the last total. This total naturally changes as more transactions are added.

So I am looking for a formula in the summary sheet that picks up the last total of the transaction sheet

Thanks

Microsoft 365 and Office | Excel | For home | Windows
0 comments No comments
{count} votes

Answer accepted by question author
  1. Q&A Assist
    2026-02-06T01:30:40.3766667+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    To pick up the last total in a column of totals in Excel, you can use the LOOKUP function or the INDEX and MATCH combination. Here’s how you can do it:

    Using LOOKUP Function

    Assuming your totals are in column A of the transactions sheet, you can use the following formula in your summary sheet:

    =LOOKUP(2,1/(Sheet1!A:A<>""),Sheet1!A:A)
    

    This formula works by looking for the last non-empty cell in column A of the transactions sheet (named "Sheet1" in this example).

    Using INDEX and MATCH

    Alternatively, you can use:

    =INDEX(Sheet1!A:A, MATCH(1E+100, Sheet1!A:A))
    

    This formula finds the last numeric value in column A.

    Make sure to replace "Sheet1" with the actual name of your transactions sheet if it's different. These formulas will automatically update as you add more transactions, ensuring that you always get the latest total.


    References:

    0 comments No comments

2 additional answers

Sort by: Most helpful
  1. Ashish Mathur 101.7K Reputation points Volunteer Moderator
    2026-02-06T23:11:12.09+00:00

    Hi,

    Try this

    =xlookup(true,Sheet1!A:A<>"",Sheet1!A:A,,,,-1)

    0 comments No comments

  2. John Coluccio 20 Reputation points
    2026-02-06T20:31:57.2066667+00:00

    =INDEX(Sheet1!A:A, MATCH(1E+100, Sheet1!A:A))

    This worked perfectly. Thank you

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.