How to Use Excel Formula to Find Last Row Number with Data (2 Ways)

In this tutorial, we will demonstrate how to use an Excel formula to find the last row number with data. While working in Microsoft Excel we might need to know the last row number from a data range. To find the last row number with data we will use different formulas throughout this article. If your working process demands to create a dynamic data range then you have to find the last row number of your data range. In that case, this article will help you a lot.


How to Use Excel Formula to Find Last Row Number with Data: 2 Easy Ways

In this article, we will use an Excel formula to find the last row number with data for two cases – either when the last row is blank or when it is non-blank. The output of the last row number with data will not be the same in both cases, so we will use different approaches.

2 Ways to Use Excel Formula to Find Last Row Number with Data


Scenario 1 – Using an Excel Formula to Find Non-Blank Last Row Number with Data

Method 1.1 – Using a Formula with ROW and ROWS Functions

The ROW function in Excel returns the row number from the active worksheet.

The ROWS function in Excel returns the number of rows in a specified reference.

We will find the last row number of the following dataset in cell E5.

Formula with ROW and ROWS Functions to Find Last Row Number with Data in Excel

STEPS:

  • Select cell E5.
  • Insert the following formula in that cell:
=ROW(B5:C15) + ROWS(B5:C15)-1

Formula with ROW and ROWS Functions to Find Last Row Number with Data in Excel

  • Press Enter.
  • The above action returns the row number of the last row from the data range in cell E5. We can see that the number of the last row is 15.

Read More: How to Find Last Row with a Specific Value in Excel


Method 1.2 – Using a Formula combining MIN, ROW, and ROWS Functions

The MIN function in Excel returns the data’s smallest number value from a data range.

Combine MIN, ROW, and ROWS Functions to Find Last Row Number with Data in Excel

STEPS:

  • Select cell C5.
  • Insert the following formula in that cell:
=MIN(ROW(B5:C15))+ROWS(B5:C15)-1
  • Press Enter.
  • The above command returns the number of the last row in cell E5.

How Does the Formula Work?

  • ROW(B5:C15))+ROWS(B5:C15)-1: This part returns the array of row numbers from the last row, which is row number 15.
  • MIN(ROW(B5:C15))+ROWS(B5:C15)-1: Returns the minimum row number in cell E5 which is row number 15.

Method 1.3 – Using a Formula combining ROW, INDEX, and ROWS Functions

In Microsoft Excel, the INDEX function returns the value at a certain position in a range or array.

We will find the number of the last row from the following dataset.

Find Last Row Number with Data Using Excel Formula with ROW, INDEX, and ROWS Functions

STEPS:

  • Select cell E5.
  • Input the following formula in that cell:
=ROW(INDEX(B5:C15,1,1))+ROWS(B5:C15)-1
  • Press Enter.
  • We get the last row number of our data range in cell E5 which is 15.

How Does the Formula Work?

  • INDEX(B5:C15,1,1): This part creates an array of the data range (B5:C15).
  • ROWS(B5:C15)-1: This part subtracts 1 from the total row numbers.
  • ROW(INDEX(B5:C15,1,1))+ROWS(B5:C15)-1: Returns the minimum row number in cell E5 which is row number 15.

Scenario 2 – Finding Both Blank and Non-Blank Last Row Number with Data in Excel

Method 2.1. Inserting the MAX Formula to Find the Last Row of Data in Excel

The Excel MAX function provides the greatest value in a specified set of data.

We see that the last row of the following dataset doesn’t contain any value.

Insert MAX Formula to Find Last Row Number with Data in Excel

Let’s see the steps to do this method.

STEPS:

  • Select cell E5.
  • Input the following formula in that cell:
=MAX((B:B<>"")*(ROW(B:B)))
  • Press Enter.
  • We get the last row number in cell E5 which is 14. It excludes the last row of our data range which is blank.

Read More: How to Find Last Non Blank Cell in Row in Excel


Method 2.2 – Combining MATCH and REPT Functions to Find the Last Row of Data in Excel

The MATCH function in Excel searches a range of cells for a specified item and then returns the item’s relative location in the range.

The REPT function in Excel repeats specific text a given number of times. We can use the REPT function to fill a cell with multiple instances of a text string.

Combine MATCH and REPT Functions to Find Last Row Number with Data in Excel

STEPS:

  • Select cell E5.
  • Insert the following formula in that cell:
=MATCH(REPT("z",50),B:B)
  • Press Enter.
  • In cell E5 we get the number of the last row with data in our dataset.

How Does the Formula Work?

  • REPT(“z”,50): This part repeats the text ‘z’ 50 times.
  • MATCH(REPT(“z”,50),B:B): In this part, the MATCH function looks in column B for our 50-character text string of ‘z’. The formula returns the location of the last non-blank cell since it cannot find it.

Method 2.3 – Using the Excel LOOKUP Formula to Find the Last Row of Data in Excel

The LOOKUP function belongs to the Excel Lookup and Reference functions. The LOOKUP function returns the comparable value from another one-row or one-column range after performing an approximate match lookup.

Use Excel LOOKUP Formula to Find Last Row Number with Data

STEPS:

  • Select cell E5.
  • Enter the following formula in that cell:
=LOOKUP(2,1/(B:B<>""),ROW(B:B))
  • Press Enter.
  • We can see the last row number of our data range in cell E5 which is 14.


Method 2.4 – Using SUMPRODUCT Function to Find the Last Row of Data in Excel

The SUMPRODUCT function in Excel returns the sum of matching ranges or arrays’ products.

Identify Last Row Number with Data in Excel Using SUMPRODUCT Function

STEPS:

  • Select cell E5.
  • Enter the following formula in that cell:
=SUMPRODUCT(MAX((C5:C15<>"")*ROW(C5:C15)))
  • Press Enter if you are using ‘Microsoft Office 365’. Otherwise you have to press Ctrl + Shift + Enter to run an array.
  • We get the last row number with data in cell E5.

How Does the Formula Work?

  • ROW(C5:C15): This part returns the row number for each cell in range (C5:C15).
  • MAX((C5:C15<>””): This part returns the highest number from the array of row numbers.
  • SUMPRODUCT(MAX((C5:C15<>””)*ROW(C5:C15))): The SUMPRODUCT function is used to calculate the above two arrays and return a value in the selected cell.

Method 2.5 – Using VBA code to Find the Last Row with Data in Excel

Detect Last Row Number with Data in Excel with VBA code

STEPS:

  • Right-click on the sheet name of the active sheet.
  • Click on the option ‘View Code’.

Detect Last Row Number with Data in Excel with VBA code

  • A new blank VBA module will appear.
  • Enter the following code in the blank module:
Sub Find_Last_Row()
Dim Last_Row As Long  
    On Error Resume Next
    Last_Row = Cells.Find(What:="*", After:=Range("B1"), _
                    LookAt:=xlPart, LookIn:=xlFormulas, _
                    SearchOrder:=xlByRows, SearchDirection:=xlPrevious, _
                    MatchCase:=False).Row
    On Error GoTo 0  
    MsgBox "Last Row: " & Last_Row
End Sub
  • Click on Run or press F5 to run the code.

Detect Last Row Number with Data in Excel with VBA code

  • The message box that appears shows that the last row number with data is 14.


Download Practice Workbook

You can download the practice workbook from here.


Related Articles


<< Go Back to Find Value in Range | Excel Range | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Mukesh Dipto
Mukesh Dipto

Mukesh Dipto is an excellent marine engineer who loves working with Excel and diving into VBA programming. For him, programming is like a superhero tool that saves time when dealing with data, files, and the internet. His skills go beyond the basics, including Rhino3D, Maxsurf C++, AutoCAD, HTML, CSS, JavaScript, and WordPress. He got his B.Sc in Naval Architecture & Marine Engineering from BUET, and now he's switched gears, working as a content developer. In this role, he... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo