Find the Last Used Row’s Last Value Address in Excel

Published on

In a large vertical dataset in Excel, how do you find the cell address of the last value in the last used row?

Assume the data range is A1:Z1000, and the last used row is row 250. In that row, the last value appears in column E. Therefore, the last used row’s last value address is E250.

You can dynamically find this in Excel using modern functions such as TRIMRANGE, XLOOKUP, and REGEXREPLACE.

Formula to Find the Last Used Row’s Last Value Address in Excel

=LET(range, "A1:Z1000", lur, MAX(ROW(TRIMRANGE(INDIRECT(range), 3, 3))), cr, REGEXREPLACE(range,"\d+", lur), val, XLOOKUP(TRUE, INDIRECT(cr)<>"", INDIRECT(cr), "", 0, -1), CELL("address", val))

Replace "A1:Z1000" with the actual range you want to check.

Where Does This Formula Come in Use?

When working with large datasets, knowing the last used row’s last value address can be useful in many ways:

  • Use it with INDIRECT, INDEX, HYPERLINK, or Conditional Formatting to navigate, highlight, or extract data dynamically.
  • Create dynamic ranges that expand automatically as new data is added.

Since our focus is on extracting the cell address rather than just the row number, let’s see a real-life example.

Example

Consider the following dataset in B2:E9, which grows over time. For flexibility, we define the range as B2:E10000.

Finding the Cell Address of the Last Value in the Last Used Row in Excel

Using the formula:

=LET(range, "B2:E10000", lur, MAX(ROW(TRIMRANGE(INDIRECT(range), 3, 3))), cr, REGEXREPLACE(range, "\d+", lur), val, XLOOKUP(TRUE, INDIRECT(cr)<>"", INDIRECT(cr), "", 0, -1), CELL("address", val))

At present, this formula returns C9.

If you scroll to row 110 and enter any value, say “X” in E110, the formula will update and return E110.

Things to Know

  1. Enter the formula outside the specified range to avoid errors.
  2. If your data is on Sheet1 and you use the formula from another sheet, modify it as follows:
=LET(range, "B2:E10000", lur, MAX(ROW(TRIMRANGE(INDIRECT("Sheet1!"&range), 3, 3))), cr, REGEXREPLACE(range, "\d+", lur), val, XLOOKUP(TRUE, INDIRECT("Sheet1!"&cr)<>"", INDIRECT("Sheet1!"&cr), "", 0, -1), CELL("address", val))

This will return the cell address with the sheet and file name, e.g.:

'[Sales Data.xlsx]Sheet1'!$E$110

Here, 'Sales Data.xlsx' is the file name, and Sheet1!$E$110 is the cell address.

How the Formula Works

The formula is built using LET to break it into components:

  • range: "B2:E10000" → Defines the dataset.
  • lur: MAX(ROW(TRIMRANGE(INDIRECT(range), 3, 3))) → Finds the last used row number (see: Find the Last Used Row Number in Excel).
  • cr: REGEXREPLACE(range, "\d+", lur) → Replaces row numbers in the range with lur (last used row number).
  • val: XLOOKUP(TRUE, INDIRECT(cr)<>"", INDIRECT(cr), "", 0,- 1) → Identifies the last non-empty value in that row.
  • CELL("address", val) → Returns the cell address of the last value.
Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Expert Prashanth KV is a Diamond Product Expert in Google Sheets, officially recognized by Google for his contributions to the Docs Editors Help Community and featured in the Google Product Experts Directory. Explore his blog to learn advanced formulas, automation tips, and problem-solving techniques to elevate your spreadsheet skills.

Custom Order for QUERY Pivot Headers in Google Sheets

By default, when you use the PIVOT clause in a Google Sheets QUERY, the...

Calculate Trip Days by Month (Start, End, and Full Days) in Google Sheets

If you're managing business travel in Google Sheets, you may need to calculate how...

Mode of Comma-Separated Numbers in Excel (Dynamic Array)

There is no dedicated function in Excel to directly find the mode of comma-separated...

How to Find Mode of Comma-Separated Numbers in Google Sheets

Working with comma-separated numbers inside a single cell is a common scenario in Google...

More like this

Mode of Comma-Separated Numbers in Excel (Dynamic Array)

There is no dedicated function in Excel to directly find the mode of comma-separated...

Sort Each Row Individually in Excel Using a LAMBDA Formula

Sorting rows in Excel typically refers to rearranging entire datasets based on values in...

Sort by Field Labels Using the SORT and XMATCH Combo in Excel

Want to sort your Excel data by column names instead of column positions? Learn...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.