Dynamic VBA Code With Last Row/Column
Finding the Last Row or Last Column within your VBA code is key to ensuring your macro doesn’t break in the future.
Early on when I first began writing VBA macro code, I always needed to go back into the code and modify range references. I had created a bunch of macros to clean up and perform analysis on raw data exported from databases and the data never had the same amount of rows from one data pull to the next.
My coding skills dramatically changed the day I realized my VBA code could be dynamic and automatically determine the size of my raw data once executed. I soon came to realize the goal of coding a macro: to write it once and never touch it again.
Variability is also the greatest challenge for any VBA coder as you have to think of every possible change that could occur in the future. I have found writing VBA code that can automatically resize itself is one of the greatest things missing from most average macro user’s code.
In this article, I have compiled a list of the best methods you can use to accomplish finding the last row or column in your data range.
Prep Your Excel Data!
Keep in mind some of these methods may not give you the desired row or column number if you are not setting your spreadsheet up properly or using a well-formatted block of data.
What I mean by a “well-formatted block of data”, is a worksheet with data that starts in cell A1 and does not have any blank rows or columns in the middle of the data.
The below figure illustrates the difference.
An Example of a Poorly-Formatted Data Set
An Example of a Well-Formatted Data Set
In a data set starting in Row 4, you may need to add or subtract a numerical value depending on the method you use. If you are going to be coding for a data set that has blank rows or columns within it, always be sure to test out your code to make sure it is calculating properly.
Find the Last Cell In Spreadsheet With Data
Finding the last cell with a value in it is key to determining the last row or last column. There are a couple of different ways you can locate the last cell on your spreadsheet. Let’s take a look!
1. The Find Function Method (Best Method)
This line of VBA code will search all the cells on your sheet and return the row of the last cell with any sort of value stored in it. Because the Find function is set to search from the very bottom of the spreadsheet and upwards, this code can accommodate blank rows in your data.
Dim LastCell As Range
Set LastCell = ActiveSheet.Cells.Find(«*», SearchOrder:=xlByRows, SearchDirection:=xlPrevious)
This method ignores empty cells with formatting still in them, which is ideal if you are truly wanting the find the last cell with data in it, not necessarily the last cell that had any modifications done to it.
2. SpecialCells Method
One of the best manual ways to do this is to utilize the Go To Special dialog box.
The Go To Special dialog box has a variety of actions that can be taken to select certain cells or objections on your spreadsheet. One of those options is to select the Last Cell on the active spreadsheet.
You can get to the Go To Special dialog box by using the keyboard shortcut Ctrl + G which will open the Go To dialog box. From there you can click the Special button and you’ll have arrived at the Go To Special dialog box.
In VBA, the select actions in the Go To Special dialog box are simply called SpecialCells. By calling the SpecialCells function in VBA, you gain the same actions, though they have slightly different names. The particular action you’ll want to call is named xlCellTypeLastCell.
The below VBA code stores the last cell found on the spreadsheet with a value in it to a range variable.
Dim LastCell As Range
Set LastCell = ActiveSheet.Cells.SpecialCells(xlCellTypeLastCell)
WARNING! This method could give you unintended results as this finds the last cell with any sort of data or formatting associated with it. This means it can return an empty cell that used to have data in it or simply has any formatting changes (like a yellow cell fill color).
7 Ways To Find The Last Row With VBA
There are actually quite a few ways to determine the last row of a data set in a spreadsheet. We will walk through a number of different ways in this article. I have marked specific methods with a “Best Method” tag as these coding practices are the most bullet-proof ways to determine the last row in your spreadsheet data.
1. The Find Function Method (Best Method)
This line of VBA code will search all the cells on your sheet and return the row of the last cell with any sort of value stored in it. Because the Find function is set to search from the very bottom of the spreadsheet and upwards, this code can accommodate blank rows within your data.
Dim LastRow As Long
LastRow = ActiveSheet.Cells.Find(«*», SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
2. SpecialCells Method
SpecialCells is a function you can call in VBA that will allow you to pinpoint certain cells or a range of cells based on specific criteria. We can use the xlCellTypeLastCell action to find the last cell in the spreadsheet and call for the cell’s row number.
Dim LastRow As Long
LastRow = ActiveSheet.Cells.SpecialCells(xlCellTypeLastCell).Row
WARNING! This method could give you unintended results as this finds the last cell with any sort of data or formatting associated with it. This means it can return an empty cell that used to have data in it or simply has any formatting changes (like a yellow cell fill color).
3. Ctrl+Shift+End Method
This line of VBA code mimics the keyboard shortcut Ctrl + Shift + End and returns the numerical value of the last row in the range.
Dim LastRow As Long
LastRow = ActiveSheet.Cells(ActiveSheet.Rows.Count, «A»).End(xlUp).Row
4. UsedRange Method
The Used Range is something that Excel stores a reference to behind the scenes. It represents the area of the spreadsheet that has values in it. The Used Range can be referenced in VBA using the UsedRange object.
You must be careful with the Used Range though , as Excel does not always update the reference in real time. Sometimes when you delete cell content the Used Range will not readjust itself right away. For this reason, it is wise to force the UsedRange object to restructure itself with your VBA code. The below VBA code example calls this restructure/refresh prior to utilizing UsedRange to pull the last row.
Dim LastRow As Long
ActiveSheet.UsedRange ‘Refresh UsedRange
LastRow = ActiveSheet.UsedRange.Rows(ActiveSheet.UsedRange.Rows.Count).Row
5. Table Object Method (Best Method)
If you are using a Table Object to store your data, you can use the Table’s name in the below VBA code to return the numerical value of how many rows are in the table.
Dim LastRow As Long
LastRow = ActiveSheet.ListObjects(«Table1»).Range.Rows.Count
6. Named Range Method
If you are using a Named Range to reference your data’s location, you can use the Range name in the below VBA code to return the numerical value of how many rows are in the Named Range.
Dim LastRow As Long
LastRow = ActiveSheet.Range(«MyNamedRange»).Rows.Count
7. Ctrl+Shift+Down Method
Dim LastRow As Long
LastRow = ActiveSheet.Range(«A1»).CurrentRegion.Rows.Count
Expand Your Range To The Last Row
After you have determined the last row, how do you use it? The vast majority of the time you are going to want to store your entire data range to a Range variable. The following code shows you how to incorporate the last row number you calculated into a Range reference.
Dim DataRange As Range
Set DataRange = Range(«A1:M» & LastRow)
7 Ways To Find The Last Column With VBA
There are actually quite a few ways to determine the last column of a data set in a spreadsheet. We will walk through a number of different ways in this article. I have marked specific methods with a “Best Method” tag as these coding practices are the most bullet-proof ways to determine the last column in your spreadsheet data.
1. The Find Function Method (Best Method)
This line of VBA code will search all the cells on your sheet and return the column of the last cell with any sort of value stored in it. Because the Find function is set to search from the very far right of the spreadsheet and then leftward, this code can accommodate blank columns within your data.
Dim LastColumn As Long
LastColumn = ActiveSheet.Cells.Find(«*», SearchOrder:=xlByColumns, SearchDirection:=xlPrevious).Column
2. SpecialCells Method
SpecialCells is a function you can call in VBA that will allow you to pinpoint certain cells or a range of cells based on specific criteria. We can use the xlCellTypeLastCell action to find the last cell in the spreadsheet and call for the cell’s column number.
Dim LastColumn As Long
LastColumn = ActiveSheet.Cells.SpecialCells(xlCellTypeLastCell).Column
WARNING! This method could give you unintended results as this finds the last cell with any sort of data or formatting associated with it. This means it can return an empty cell that used to have data in it or simply has any formatting changes (like a yellow cell fill color).
3. Ctrl+Shift+End Method
Dim LastColumn As Long
LastColumn = ActiveSheet.Cells(1, ActiveSheet.Columns.Count).End(xlToLeft).Column
4. UsedRange Method
Dim LastColumn As Long
ActiveSheet.UsedRange ‘Refresh UsedRange
LastColumn = ActiveSheet.UsedRange.Columns(ActiveSheet.UsedRange.Columns.Count).Column
5. Table Object Method (Best Method)
If you are using a Table Object to store your data, you can use the Table’s name in the below VBA code to return the numerical value of how many columns are in the table.
Dim LastColumn As Long
LastColumn = ActiveSheet.ListObjects(«Table1»).Range.Columns.Count
6. Named Range Method
Dim LastColumn As Long
LastColumn = ActiveSheet.Range(«MyNamedRange»).Columns.Count
7. Ctrl+Shift+Right Method
Dim LastColumn As Long
LastColumn = ActiveSheet.Range(«A1»).CurrentRegion.Columns.Count
How To Expand Your Range To The Last Column
After you have determined the last column, how do you use it? The vast majority of the time you are going to want to store your entire data range to a Range variable. The following code shows you how to incorporate the last column number you calculated into a Range reference.
Dim DataRange As Range
Set DataRange = Range(Cells(1, 1), Cells(100, LastColumn))
VBA Function To Find Last Row or Column
Tim provided the inspiration for a function that can return either the last row or column number through a user-defined function for a given worksheet.
An example of how you could call this function to return the last row on the active worksheet would be written as: x = LastRowColumn(ActiveSheet, «Row»)
Function LastRowColumn(sht As Worksheet, RowColumn As String) As Long
‘PURPOSE: Function To Return the Last Row Or Column Number In the Active Spreadsheet
‘INPUT: «R» or «C» to determine which direction to search
Select Case LCase(Left(RowColumn, 1)) ‘If they put in ‘row’ or column instead of ‘r’ or ‘c’.
Case «c»
LastRowColumn = sht.Cells.Find(«*», LookIn:=xlFormulas, SearchOrder:=xlByColumns, _
SearchDirection:=xlPrevious).Column
Case «r»
LastRowColumn = sht.Cells.Find(«*», LookIn:=xlFormulas, SearchOrder:=xlByRows, _
SearchDirection:=xlPrevious).Row
Case Else
LastRowColumn = 1
End Select
End Function
What Can I Do With A LastRow Or LastColumn Variable?
There are many things you can do by calculating the last row or last column of a data set. Examples could be:
-
Resizing a Pivot Table range
-
Looping through cells in a column
-
Deleting only the raw data range
There are many, many more examples of this and I’m sure you can think of a few examples yourself.
Let me know in the comments section below how you use resizing a range in your macro code! Also, if you can think of any other ways to use VBA code to find the last row or last column, post your coding method in the comments section so we can improve the current list. I look forward to reading about your experiences.
I Hope This Excel Tutorial Helped!
Hopefully, I was able to explain how you can use VBA code to find the last row or last column of your range to add dynamic capabilities to your macros. If you have any questions about these techniques or suggestions on how to improve this article, please let me know in the comments section below.
About The Author
Hey there! I’m Chris and I run TheSpreadsheetGuru website in my spare time. By day, I’m actually a finance professional who relies on Microsoft Excel quite heavily in the corporate world. I love taking the things I learn in the “real world” and sharing them with everyone here on this site so that you too can become a spreadsheet guru at your company.
Through my years in the corporate world, I’ve been able to pick up on opportunities to make working with Excel better and have built a variety of Excel add-ins, from inserting tickmark symbols to automating copy/pasting from Excel to PowerPoint. If you’d like to keep up to date with the latest Excel news and directly get emailed the most meaningful Excel tips I’ve learned over the years, you can sign up for my free newsletters. I hope I was able to provide you with some value today and hope to see you back here soon! — Chris
In this VBA Tutorial, you learn how to find the last row or column with macros.
This VBA Last Row or Last Column Tutorial is accompanied by an Excel workbook containing the data and macros I use in the examples below. You can get immediate free access to this example workbook by subscribing to the Power Spreadsheets Newsletter.
Use the following Table of Contents to navigate to the section you’re interested in.
Related Excel VBA and Macro Tutorials
The following VBA and Macro Tutorials may help you better understand and implement the contents below:
- General VBA constructs and structures:
- Learn the basics about working with macros and VBA here.
- Learn the basic terms you should know to start working with VBA here.
- Learn how to enable or disable macros here.
- Learn how to work with the Visual Basic Editor (VBE) here.
- Learn how to work with Sub procedures here.
- Learn how to work with Function procedures (User-Defined Functions) here.
- Learn how to refer to objects here.
- Learn how to refer to cell ranges with VBA here.
- Learn how to work with R1C1-style references here.
- Learn how to work with VBA properties here.
- Learn how to work with VBA methods here.
- Learn how to declare and work with variables here.
- Learn how to work with VBA data types here.
- Learn how to use worksheet functions in VBA here.
- Learn how to work with loops here.
- Practical VBA applications and macro examples:
- Learn how to check if a cell is empty with VBA here.
- Learn how to insert rows with VBA here.
- Learn how to delete rows with VBA here.
- Learn how to delete blank or empty rows with VBA here.
- Learn how to delete columns with VBA here.
- Learn how to hide or unhide rows and columns with VBA here.
- Learn how to create named ranges with VBA here.
- Learn how to work with VBA message boxes here.
You can also:
- Find additional VBA and Macro Tutorials here.
- Find online courses about VBA and macros here.
- Find books about VBA and macros here.
- Find Excel tools and templates here.
#1: Find the Last Row in a Column Before an Empty Cell
VBA Code to Find the Last Row in a Column Before an Empty Cell
To find the last row in a column before an empty cell with VBA, use a statement with the following structure:
LastRow = CellInColumn.End(xlDown).Row
Process to Find the Last Row in a Column Before an Empty Cell
To find the last row in a column before an empty cell with VBA, follow these steps:
- Identify a cell in the column whose last row (before an empty cell) you want to find (CellInColumn). This cell should be located above the empty cell.
- Move down the column to the end of the region (End(xlDown)). This takes you to the cell immediately above the empty cell.
- Obtain the row number of that last cell immediately above the empty cell (Row).
- Assign the number of the last row to a variable (LastRow = …).
VBA Statement Explanation
Item: LastRow
Variable of the Long data type to which you assign the number of the last row found by the macro (CellInColumn.End(xlDown).Row).
Item: =
The assignment operator (=) assigns the number of the last row found by the macro (CellInColumn.End(xlDown).Row) to LastRow.
Item: CellInColumn
Range object representing a cell in the column whose last row (before an empty cell) you want to find. The cell represented by Range should be located above the empty cell.
You can usually work with, among others, the following properties to refer to this Range object:
- Worksheet.Range.
- Worksheet.Cells.
Item: End(xlDown)
The Range.End property returns a Range object representing the cell at the end of the region containing the source range (CellInColumn).
When searching for the last row in a column (before an empty cell), set the Direction parameter of the Range.End property to xlDown. xlDown specifies the direction in which to move (down).
CellInColumn.End(xlDown) is the equivalent to pressing the “Ctrl+Down Arrow” keyboard shortcut when CellInColumn is the active cell.
Item: Row
The Range.Row property returns the number of the first row of the first area in the source range.
When searching for the last row in a column (before an empty cell), the source range is the cell immediately above that empty cell (CellInColumn.End(xlDown)). Therefore, the Range.Row property returns the number of that row immediately above the applicable empty cell.
Macro Example to Find the Last Row in a Column Before an Empty Cell
The following macro (User-Defined Function) example finds the last row (before an empty cell) in the column containing the cell passed as argument (myCell).
Function lastRowInColumnBeforeBlank(myCell As Range) As Long 'Source: https://powerspreadsheets.com/ 'finds the last row (before an empty cell) in the column containing myCell 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'find the last row (before an empty cell) in the column containing myCell lastRowInColumnBeforeBlank = myCell.End(xlDown).Row End Function
Effects of Executing Macro Example to Find the Last Row in a Column Before an Empty Cell
The following image illustrates the effects of using the macro (User-Defined Function) example. As expected, Excel returns the number (16) of the last row before an empty cell (A17) in the column containing the cell passed as argument (A6).
#2: Find the Last Row Among Several Columns Before Empty Cells
VBA Code to Find the Last Row Among Several Columns Before Empty Cells
To find the last row (furthest down, before empty cells) among several columns with VBA, use a macro with the following statement structure:
OverallLastRow = 0 With Range For Counter = .Column To .Columns(.Columns.Count).Column ColumnLastRow = .Parent.Cells(.Row, Counter).End(xlDown).Row If ColumnLastRow > OverallLastRow Then OverallLastRow = ColumnLastRow Next Counter End With
Process to Find the Last Row Among Several Columns Before Empty Cells
To find the last row (furthest down, before empty cells) among several columns with VBA, follow these steps:
- Initialize the variable that will hold the number of the overall (across all columns) last row by setting it to 0 (OverallLastRow = 0).
- Identify a cell range containing cells in the (several) columns you consider when searching for the last row before empty cells (With Range | End With). This cell range should begin above the empty cells.
- Loop through each column in Range (For Counter = .Column To .Columns(.Columns.Count).Column | Next Counter).
- Identify a cell in the column you’re currently working with (.Parent.Cells(.Row, Counter)).
- Move down the column to the end of the region (End(xlDown)). This takes you to the cell immediately above the empty cell in that column.
- Obtain the row number of that last cell immediately above the empty cell (Row).
- Assign the number of the last row in the column you’re working with to a variable (ColumnLastRow = …).
- Test if the number of the last row in the column you’re working with (ColumnLastRow) is larger than the value currently held by the variable (OverallLastRow) that holds the overall (across all columns) last row number (If ColumnLastRow > OverallLastRow).
- If the number of the last row in the column you’re working with (ColumnLastRow) is larger than the value currently held by the variable (OverallLastRow) that holds the overall (across all columns) last row number, update the value held by the variable (Then OverallLastRow = ColumnLastRow).
VBA Statement Explanation
Line #1: OverallLastRow = 0
OverallLastRow is a variable of the Long data type to which you assign the number of the last row (among several columns) found by the macro.
The assignment operator (=) initializes OverallLastRow by assigning the value of 0.
Lines #2 and #7: With Range| End With
The With… End With statement executes a series of statements (lines #3 through #6) on a single object (Range).
Range is a Range object representing a cell range containing cells in the (several) columns you consider when searching for the last row (before empty cells). This cell range should begin above those empty cells.
You can usually work with, among others, the Worksheet.Range property to refer to this Range object.
Lines #3 and #6: For Counter = .Column To .Columns(.Columns.Count).Column | Next Counter
Item: For Counter = … To … | Next Counter
The For… Next statement repeats a group of statements (lines #4 and #5) a specific number of times (.Column To .Columns(.Columns.Count).Column).
Counter is the loop counter. If you explicitly declare a variable to represent Counter, you can usually declare it as of the Long data type.
The following are the initial and final values of Counter:
- Initial value: The number of the first column in Range (.Column).
- Final value: The number of the last column in Range (.Columns(.Columns.Count).Column).
Therefore, the For… Next statement loops through all the columns in Range.
Item: .Column
The Range.Column property returns the number of the first column of the first area in the source range (Range).
When searching for the last row among several columns (before empty cells), you use the Range.Column property twice, as follows:
- .Column returns the number of the first column in Range.
- .Columns(.Columns.Count).Column returns the number of the last column in Range.
Item: .Columns(.Columns.Count)
The Range.Columns property returns a Range object representing the columns in the source range (Range).
The Range.Count property returns the number of objects in a collection. When searching for the last row among several columns (before empty cells), the Range.Count property returns the number of columns in the source range (.Columns).
Therefore:
- .Columns returns a Range object representing all columns in Range.
- .Columns.Count returns the number of columns in Range.
.Columns.Count is used as an index number of the Range.Columns property (.Columns(.Columns.Count)). In other words, .Columns(.Columns.Count) refers to the column (within Range) whose index number is equal to the number of columns in Range (.Columns.Count). This is the last column in Range.
Line #4: ColumnLastRow = .Parent.Cells(.Row, Counter).End(xlDown).Row
Item: ColumnLastRow
Variable of the Long data type to which you assign the number of the last row in the current column (column number Counter) found by the macro (.Parent.Cells(.Row, Counter).End(xlDown).Row).
Item: =
The assignment operator (=) assigns the number of the last row found by the macro in the current column (.Parent.Cells(.Row, Counter).End(xlDown).Row) to ColumnLastRow.
Item: Parent
The Range.Parent property returns the parent object of the source range (Range).
When searching for the last row among several columns, the Range.Parent property returns a Worksheet object representing the worksheet that contains Range.
Item: Cells(.Row, Counter)
The Worksheet.Cells property returns a Range object representing all the cells in the worksheet. If you specify the row and column index, the Worksheet.Cells property returns a Range object representing the cell at the intersection of the specified row and column.
When searching for the last row among several columns (before empty cells):
- .Row is the row index. The Range.Row property returns the number of the first row of the first area in the source range (Range).
- Counter is the column index and loop counter of the For… Next statement that iterates through all the columns in Range.
Therefore, the Worksheet.Cells property returns a Range object representing the cell at the intersection of:
- The first row of Range (.Row); and
- The column through which the For… Next loop is currently iterating (Counter).
Item: End(xlDown)
The Range.End property returns a Range object representing the cell at the end of the region containing the source range (Cells(.Row, Counter)).
When searching for the last row among several columns (before empty cells), set the Direction parameter of the Range.End property to xlDown. xlDown specifies the direction in which to move (down).
.Parent.Cells(.Row, Counter).End(xlDown) is the equivalent to pressing the “Ctrl+Down Arrow” keyboard shortcut when .Parent.Cells(.Row, Counter) is the active cell.
Item: Row
The Range.Row property returns the number of the first row of the first area in the source range.
When searching for the last row in a column (column number Counter, before an empty cell), the source range is the cell immediately above that empty cell (.Parent.Cells(.Row, Counter).End(xlDown)). Therefore, the Range.Row property returns the number of that row immediately above the applicable empty cell.
Line #5: If ColumnLastRow > OverallLastRow Then OverallLastRow = ColumnLastRow
Item: If … Then …
The If… Then… statement conditionally executes a group of statements (OverallLastRow = ColumnLastRow), depending on the value of an expression (ColumnLastRow > OverallLastRow).
Item: ColumnLastRow > OverallLastRow
Condition of the If… Then… statement, which evaluates to True or False as follows:
- True if ColumnLastRow is larger than (>) OverallLastRow.
- False otherwise.
Item: OverallLastRow = ColumnLastRow
Statement that is executed if the condition tested by the If… Then… statement (ColumnLastRow > OverallLastRow) returns True.
The assignment operator (=) assigns the value held by ColumnLastRow to OverallLastRow.
Macro Example to Find the Last Row Among Several Columns Before Empty Cells
The following macro (User-Defined Function) example finds the last row (before empty cells) among the columns containing the cell range passed as argument (myRange).
Function lastRowInSeveralColumnsBeforeBlank(myRange As Range) As Long 'Source: https://powerspreadsheets.com/ 'finds the last row (before empty cells) in the columns containing myRange 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'declare variables to represent loop counter and hold value of last row in current column Dim iCounter As Long Dim iColumnLastRow As Long 'initialize variable that holds the number of the (overall) last row across several columns lastRowInSeveralColumnsBeforeBlank = 0 With myRange 'loop through each column in myRange For iCounter = .Column To .Columns(.Columns.Count).Column 'find last row (before an empty cell) in the current column iColumnLastRow = .Parent.Cells(.Row, iCounter).End(xlDown).Row 'if the number of the last row in the current column is larger than the row number held by lastRowInSeveralColumnsBeforeBlank, update value held by lastRowInSeveralColumnsBeforeBlank If iColumnLastRow > lastRowInSeveralColumnsBeforeBlank Then lastRowInSeveralColumnsBeforeBlank = iColumnLastRow Next iCounter End With End Function
Effects of Executing Macro Example to Find the Last Row Among Several Columns Before Empty Cells
The following image illustrates the effects of using the macro (User-Defined Function) example. As expected, Excel returns the number (17) of the last row before empty cells (A14, B15, C16, D17, E18) among the columns containing the cell range passed as argument (A6 to E6).
#3: Find the Last Row in a Column
VBA Code to Find the Last Row in a Column
To find the last row in a column with VBA, use a macro with the following statement structure:
With CellInColumn.Parent LastRow = .Cells(.Rows.Count, CellInColumn.Column).End(xlUp).Row End With
Process to Find the Last Row in a Column
To find the last row in a column with VBA, follow these steps:
- Identify a cell in the column whose last row you want to find (CellInColumn) and the worksheet containing this cell (CellInColumn.Parent).
- Identify the last worksheet cell in the column containing CellInColumn (.Cells(.Rows.Count, CellInColumn.Column)).
- Move up the column to the end of the region (End(xlUp)). This takes you to the last cell in the column.
- Obtain the row number of that last cell in the column (Row).
- Assign the number of the last row to a variable (LastRow = …).
VBA Statement Explanation
Lines #1 and #3: With CellInColumn.Parent | End With
Item: With … | End With
The With… End With statement executes a series of statements (line #2) on a single object (CellInColumn.Parent).
Item: CellInColumn
Range object representing a cell in the column whose last row you want to find.
You can usually work with, among others, the following properties to refer to this Range object:
- Worksheet.Range.
- Worksheet.Cells.
Item: Parent
The Range.Parent property returns the parent object of the source range (CellInColumn).
When searching for the last row in a column, the Range.Parent property returns a Worksheet object representing the worksheet that contains CellInColumn.
Line #2: LastRow = .Cells(.Rows.Count, CellInColumn.Column).End(xlUp).Row
Item: LastRow
Variable of the Long data type to which you assign the number of the last row found by the macro (.Cells(.Rows.Count, CellInColumn.Column).End(xlUp).Row).
Item: =
The assignment operator (=) assigns the number of the last row found by the macro (.Cells(.Rows.Count, CellInColumn.Column).End(xlUp).Row) to LastRow.
Item: .Cells(.Rows.Count, CellInColumn.Column)
The Worksheet.Cells property returns a Range object representing all the cells in the worksheet. If you specify the row and column index, the Worksheet.Cells property returns a Range object representing the cell at the intersection of the specified row and column.
When searching for the last row in a column:
- .Rows.Count is the row index and returns the number of the last row in the worksheet (CellInColumn.Parent). For these purposes:
- The Worksheet.Rows property returns a Range object representing all rows on the worksheet (CellInColumn.Parent).
- The Range.Count property returns the number of objects in a collection. When searching for the last row in a column, the Range.Count property returns the number of rows in the worksheet (CellInColumn.Parent).
- CellInColumn.Column is the column index and returns the number of the column containing CellInColumn. For these purposes, the Range.Column property returns the number of the first column of the first area in the source range (CellInColumn).
Therefore, the Worksheet.Cells property returns a Range object representing the cell at the intersection of:
- The last row of the worksheet (.Rows.Count); and
- The column containing CellInColumn (CellInColumn.Column).
Item: End(xlUp)
The Range.End property returns a Range object representing the cell at the end of the region containing the source range (.Cells(.Rows.Count, CellInColumn.Column)).
When searching for the last row in a column, set the Direction parameter of the Range.End property to xlUp. xlUp specifies the direction in which to move (up).
.Cells(.Rows.Count, CellInColumn.Column).End(xlUp) is the equivalent to pressing the “Ctrl+Up Arrow” keyboard shortcut when Cells(.Rows.Count, CellInColumn.Column) is the active cell.
Item: Row
The Range.Row property returns the number of the first row of the first area in the source range.
When searching for the last row in a column, the source range is the last cell in the column (.Cells(.Rows.Count, CellInColumn.Column).End(xlUp)). Therefore, the Range.Row property returns the number of that last row.
Macro Example to Find the Last Row in a Column
The following macro (User-Defined Function) example finds the last row in the column containing the cell passed as argument (myCell).
Function lastRowInColumn(myCell As Range) As Long 'Source: https://powerspreadsheets.com/ 'finds the last row in the column containing myCell 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'identify worksheet containing myCell With myCell.Parent 'find the last row in the column containing myCell lastRowInColumn = .Cells(.Rows.Count, myCell.Column).End(xlUp).Row End With End Function
Effects of Executing Macro Example to Find the Last Row in a Column
The following image illustrates the effects of using the macro (User-Defined Function) example. As expected, Excel returns the number (25) of the last row in the column containing the cell passed as argument (A6).
#4: Find the Last Row Among Several Columns
VBA Code to Find the Last Row Among Several Columns
To find the last row (furthest down) among several columns with VBA, use a macro with the following statement structure:
OverallLastRow = 0 With Range For Counter = .Column To .Columns(.Columns.Count).Column With .Parent ColumnLastRow = .Cells(.Rows.Count, Counter).End(xlUp).Row If ColumnLastRow > OverallLastRow Then OverallLastRow = ColumnLastRow End With Next Counter End With
Process to Find the Last Row Among Several Columns
To find the last row (furthest down) among several columns with VBA, follow these steps:
- Initialize the variable that will hold the number of the overall (across all columns) last row by setting it to 0 (OverallLastRow = 0).
- Identify a cell range containing cells in the (several) columns you consider when searching for the last row (With Range | End With).
- Loop through each column in Range (For Counter = .Column To .Columns(.Columns.Count).Column | Next Counter).
- Identify the worksheet containing Range (With .Parent | End With).
- Identify the last worksheet cell in the column you’re currently working with (.Cells(.Rows.Count, Counter)).
- Move up the column to the end of the region (End(xlUp)). This takes you to the last cell in the column.
- Obtain the row number of that last cell in the column (Row).
- Assign the number of the last row in the column you’re working with to a variable (ColumnLastRow = …).
- Test if the number of the last row in the column you’re working with (ColumnLastRow) is larger than the value currently held by the variable (OverallLastRow) that holds the overall (across all columns) last row number (If ColumnLastRow > OverallLastRow).
- If the number of the last row in the column you’re working with (ColumnLastRow) is larger than the value currently held by the variable (OverallLastRow) that holds the overall (across all columns) last row number, update the value held by the variable (Then OverallLastRow = ColumnLastRow).
VBA Statement Explanation
Line #1: OverallLastRow = 0
OverallLastRow is a variable of the Long data type to which you assign the number of the last row among several columns found by the macro.
The assignment operator (=) initializes OverallLastRow by assigning the value of 0.
Lines #2 and #9: With Range | End With
The With… End With statement executes a series of statements (lines #3 through #8) on a single object (Range).
Range is a Range object representing a cell range containing cells in the (several) columns you consider when searching for the last row.
You can usually work with, among others, the Worksheet.Range property to refer to this Range object.
Lines #3 and #8: For Counter = .Column To .Columns(.Columns.Count).Column | Next Counter
Item: For Counter = … To … | Next Counter
The For… Next statement repeats a group of statements (lines #4 to #7) a specific number of times (.Column To .Columns(.Columns.Count).Column).
Counter is the loop counter. If you explicitly declare a variable to represent Counter, you can usually declare it as of the Long data type.
The following are the initial and final values of Counter:
- Initial value: The number of the first column in Range (.Column).
- Final value: The number of the last column in Range (.Columns(.Columns.Count).Column).
Therefore, the For… Next statement loops through all the columns in Range.
Item: .Column
The Range.Column property returns the number of the first column of the first area in the source range (Range).
When searching for the last row among several columns, you use the Range.Column property twice, as follows:
- .Column returns the number of the first column in Range.
- .Columns(.Columns.Count).Column returns the number of the last column in Range.
Item: .Columns(.Columns.Count).Column
The Range.Columns property returns a Range object representing the columns in the source range (Range).
The Range.Count property returns the number of objects in a collection. When searching for the last row among several columns, the Range.Count property returns the number of columns in the source range (.Columns).
Therefore:
- .Columns returns a Range object representing all columns in Range.
- .Columns.Count returns the number of columns in Range.
.Columns.Count is used as an index number of the Range.Columns property (.Columns(.Columns.Count)). In other words, .Columns(.Columns.Count) refers to the column (within Range) whose index number is equal to the number of columns in Range (.Columns.Count). This is the last column in Range.
Lines #4 and #7: With .Parent | End With
The With… End With statement executes a series of statements (lines #5 and #6) on a single object (.Parent).
The Range.Parent property returns the parent object of the source range (Range). When searching for the last row among several columns, the Range.Parent property returns a Worksheet object representing the worksheet that contains Range.
Line #5: ColumnLastRow = .Cells(.Rows.Count, Counter).End(xlUp).Row
Item: ColumnLastRow
Variable of the Long data type to which you assign the number of the last row in the current column (column number Counter) found by the macro (.Cells(.Rows.Count, Counter).End(xlUp).Row).
Item: =
The assignment operator (=) assigns the number of the last row found by the macro in the current column (.Cells(.Rows.Count, Counter).End(xlUp).Row) to ColumnLastRow.
Item: .Cells(.Rows.Count, Counter)
The Worksheet.Cells property returns a Range object representing all the cells in the worksheet. If you specify the row and column index, the Worksheet.Cells property returns a Range object representing the cell at the intersection of the specified row and column.
When searching for the last row among several columns:
- .Rows.Count is the row index and returns the number of the last row in the worksheet (Range.Parent). For these purposes:
- The Worksheet.Rows property returns a Range object representing all rows on the worksheet (Range.Parent).
- The Range.Count property returns the number of objects in a collection. When searching for the last row among several columns, the Range.Count property returns the number of rows in the worksheet (Range.Parent).
- Counter is the column index and loop counter of the For… Next statement that iterates through all the columns in Range.
Therefore, the Worksheet.Cells property returns a Range object representing the cell at the intersection of:
- The last row of the worksheet (.Rows.Count); and
- The column through which the For… Next loop is currently iterating (Counter).
Item: End(xlUp)
The Range.End property returns a Range object representing the cell at the end of the region containing the source range (.Cells(.Rows.Count, Counter)).
When searching for the last row among several columns, set the Direction parameter of the Range.End property to xlUp. xlUp specifies the direction in which to move (up).
.Cells(.Rows.Count, Counter).End(xlUp) is the equivalent to pressing the “Ctrl+Up Arrow” keyboard shortcut when .Cells(.Rows.Count, Counter) is the active cell.
Item: Row
The Range.Row property returns the number of the first row of the first area in the source range.
When searching for the last row in a column (column number Counter), the source range is the last cell in the column (.Cells(.Rows.Count, Counter).End(xlUp)). Therefore, the Range.Row property returns the number of that last row.
Line #6: If ColumnLastRow > OverallLastRow Then OverallLastRow = ColumnLastRow
Item: If … Then
The If… Then… statement conditionally executes a group of statements (OverallLastRow = ColumnLastRow), depending on the value of an expression (ColumnLastRow > OverallLastRow).
Item: ColumnLastRow > OverallLastRow
Condition of the If… Then… statement, which evaluates to True or False as follows:
- True if ColumnLastRow is larger than (>) OverallLastRow.
- False otherwise.
Item: OverallLastRow = ColumnLastRow
Statement that is executed if the condition tested by the If… Then… statement (ColumnLastRow > OverallLastRow) returns True.
The assignment operator (=) assigns the value held by ColumnLastRow to OverallLastRow.
Macro Example to Find the Last Row Among Several Columns
The following macro (User-Defined Function) example finds the last row among the columns containing the cell range passed as argument (myRange).
Function lastRowInSeveralColumns(myRange As Range) As Long 'Source: https://powerspreadsheets.com/ 'finds the last row in the columns containing myRange 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'declare variables to represent loop counter and hold value of last row in current column Dim myColumnLastRow As Long Dim iCounter As Long 'initialize variable that holds the number of the (overall) last row across several columns lastRowInSeveralColumns = 0 With myRange 'loop through each column in myRange For iCounter = .Column To .Columns(.Columns.Count).Column 'work with the worksheet containing myRange With .Parent 'find last row in the current column myColumnLastRow = .Cells(.Rows.Count, iCounter).End(xlUp).Row 'if the number of the last row in the current column is larger than the row number held by lastRowInSeveralColumns, update value held by lastRowInSeveralColumns If myColumnLastRow > lastRowInSeveralColumns Then lastRowInSeveralColumns = myColumnLastRow End With Next iCounter End With End Function
Effects of Executing Macro Example to Find the Last Row Among Several Columns
The following image illustrates the effects of using the macro (User-Defined Function) example. As expected, Excel returns the number (25) of the last row among the columns containing the cell range passed as argument (A6 to E6).
#5: Find the Last Row by Going to the Last Cell in the Used Range
VBA Code to Find the Last Row by Going to the Last Cell in the Used Range
To find the last row by going to the last cell in the used range with VBA, use a macro with the following structure:
Worksheet.UsedRange LastRow = Worksheet.Cells.SpecialCells(xlCellTypeLastCell).Row
Process to Find the Last Row by Going to the Last Cell in the Used Range
To find the last row by going to the last cell in the used range with VBA, follow these steps:
- Identify the worksheet whose last row you want to find (Worksheet).
- Attempt to reset the used range of Worksheet (Worksheet.UsedRange).
- Identify the last cell in the used range of Worksheet (Worksheet.Cells.SpecialCells(xlCellTypeLastCell)).
- Obtain the row number of that last cell in the used range (Row).
- Assign the number of the last row to a variable (LastRow = …).
VBA Statement Explanation
Line #1: Worksheet.UsedRange
Item: Worksheet
Worksheet object representing the worksheet whose last row (in the used range) you want to find.
You can usually work with, among others, the following properties to refer to this Worksheet object:
- Application.ActiveSheet.
- Workbook.Worksheets.
Item: UsedRange
The Worksheet.UsedRange property returns a Range object representing the used range of Worksheet.
From a broad perspective, you can think of the used range as the cell range encompassing all “used” cells within a worksheet.
Working with the Worksheet.UsedRange property can be tricky. One of the main challenges associated with relying on this property is that Excel retains cells that aren’t longer in use (but have been) and considers them when calculating the used range.
Therefore, prior to using VBA code that relies on Excel’s calculation of the used range, you may want to (try to) reset it. The following 2 alternative statements are commonly used for these purposes:
'alternative #1 (used in this Tutorial) Worksheet.UsedRange 'alternative #2 (relies on the Range.Count property) rowsCount = Worksheet.UsedRange.Rows.Count
There are cases in which these used-range-resetting statements fail.
Line #2: LastRow = Worksheet.Cells.SpecialCells(xlCellTypeLastCell).Row
Item: LastRow
Variable of the Long data type to which you assign the number of the last row found by the macro (Worksheet.Cells.SpecialCells(xlCellTypeLastCell).Row).
Item: =
The assignment operator (=) assigns the number of the last row found by the macro (Worksheet.Cells.SpecialCells(xlCellTypeLastCell).Row) to LastRow.
Item: Worksheet
Worksheet object representing the worksheet whose last row (in the used range) you want to find. This worksheet should be the same whose used range you attempt to reset (line #1).
You can usually work with, among others, the following properties to refer to this Worksheet object:
- Application.ActiveSheet.
- Workbook.Worksheets.
Item: Cells
The Worksheet.Cells property returns a Range object representing all the cells in Worksheet.
Item: SpecialCells(xlCellTypeLastCell)
The Range.SpecialCells method returns a Range object representing the cells that match a specific type and value.
When Searching for the last row by going to the last cell in the used range, set the Type parameter of the Range.SpecialCells method to the xlCellTypeLastCell built-in constant (or 11). This results in Range.SpecialCells returning a Range object that represents the last cell in the used range.
Item: Row
The Range.Row property returns the number of the first row of the first area in the source range.
When searching for the last row by going to the last cell in the used range, the source range is that last cell of the used range (Worksheet.Cells.SpecialCells(xlCellTypeLastCell)). Therefore, the Range.Row property returns the number of that last row.
Macro Example to Find the Last Row by Going to the Last Cell in the Used Range
The following macro example finds the last row in the active sheet (ActiveSheet) by going to the last cell in the used range (Cells.SpecialCells(xlCellTypeLastCell)).
Sub lastRowInWorksheetXlCellTypeLastCell() 'Source: https://powerspreadsheets.com/ 'finds the last row in the active sheet's used range 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'declare variable to hold value of last row Dim myLastRow As Long 'attempt to reset the active sheet's used range ActiveSheet.UsedRange 'find the last row in the active sheet by, previously, identifying the last cell in the used range myLastRow = ActiveSheet.Cells.SpecialCells(xlCellTypeLastCell).Row 'display the number of the last row found by the macro MsgBox myLastRow End Sub
Effects of Executing Macro Example to Find the Last Row by Going to the Last Cell in the Used Range
The following image illustrates the effects of using the macro example. As expected, Excel returns the number (26) of the last row in the active sheet by going to the last cell in the used range. Excel considers formatting (including conditional formatting) when keeping track of a worksheet’s used range.
#6: Find the Last Row in the Used Range
VBA Code to Find the Last Row in the Used Range
To find the last row in the used range with VBA, use a macro with the following statement structure:
Worksheet.UsedRange With Worksheet.UsedRange LastRow = .Rows(.Rows.Count).Row End With
Process to Find the Last Row in the Used Range
To find the last row in the used range with VBA, follow these steps:
- Identify the worksheet whose last row you want to find (Worksheet).
- Attempt to reset the used range of Worksheet (Worksheet.UsedRange).
- Work with the used range of Worksheet (With Worksheet.UsedRange | End With).
- Identify the last row in the used range of Worksheet (.Rows(.Rows.Count)).
- Obtain the number of that last row in the used range (Row).
- Assign the number of the last row to a variable (LastRow = …).
VBA Statement Explanation
Line #1: Worksheet.UsedRange
Item: Worksheet
Worksheet object representing the worksheet whose last row (in the used range) you want to find.
You can usually work with, among others, the following properties to refer to this Worksheet object:
- Application.ActiveSheet.
- Workbook.Worksheets.
Item: UsedRange
The Worksheet.UsedRange property returns a Range object representing the used range of Worksheet.
From a broad perspective, you can think of the used range as the cell range encompassing all “used” cells within a worksheet.
Working with the Worksheet.UsedRange property can be tricky. One of the main challenges associated with relying on this property is that Excel retains cells that aren’t longer in use (but have been) and considers them when calculating the used range.
Therefore, prior to using VBA code that relies on Excel’s calculation of the used range, you may want to (try to) reset it. The following 2 alternative statements are commonly used for these purposes:
'alternative #1 (used in this Tutorial) Worksheet.UsedRange 'alternative #2 (relies on the Range.Count property) rowsCount = Worksheet.UsedRange.Rows.Count
There are cases in which these used-range-resetting statements fail.
Lines #2 and #4: With Worksheet.UsedRange | End With
Item: With … | End With
The With… End With statement executes a series of statements (line #3) on a single object (Worksheet.UsedRange).
Item: Worksheet
Worksheet object representing the worksheet whose last row (in the used range) you want to find. This worksheet should be the same whose used range you attempt to reset (line #1).
You can usually work with, among others, the following properties to refer to this Worksheet object:
- Application.ActiveSheet.
- Workbook.Worksheets.
Item: UsedRange
The Worksheet.UsedRange property returns a Range object representing the used range of Worksheet. From a broad perspective, you can think of the used range as the cell range encompassing all “used” cells within a worksheet.
Line #3: LastRow = .Rows(.Rows.Count).Row
Item: LastRow
Variable of the Long data type to which you assign the number of the last row found by the macro (.Rows(.Rows.Count).Row).
Item: =
The assignment operator (=) assigns the number of the last row found by the macro (.Rows(.Rows.Count).Row) to LastRow.
Item: .Rows(.Rows.Count)
The Range.Rows property returns a Range object representing the rows in the source range (Worksheet.UsedRange).
The Range.Count property returns the number of objects in a collection. When searching for the last row in the used range, the Range.Count property returns the number of rows in the source range (.Rows).
Therefore:
- .Rows returns a Range object representing all rows in Worksheet.UsedRange.
- .Rows.Count returns the number of rows in Worksheet.UsedRange.
.Rows.Count is used as an index number of the Range.Rows property (.Rows(.Rows.Count)). In other words, .Rows(.Rows.Count) refers to the row (within Worksheet.UsedRange) whose index number is equal to the number of rows in Worksheet.UsedRange (.Rows.Count). This is the last row in Worksheet.UsedRange.
Item: Row
The Range.Row property returns the number of the first row of the first area in the source range.
When searching for the last row in the used range, the source range is that last row in the used range (.Rows(.Rows.Count)). Therefore, the Range.Row property returns the number of that last row.
Macro Example to Find the Last Row in the Used Range
The following macro example finds the last row in the used range of the active sheet (ActiveSheet.UsedRange).
Sub lastRowInWorksheetUsedRange() 'Source: https://powerspreadsheets.com/ 'finds the last row in the active sheet's used range 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'declare variable to hold value of last row Dim myLastRow As Long 'attempt to reset the active sheet's used range ActiveSheet.UsedRange 'find the last row in the active sheet's used range With ActiveSheet.UsedRange myLastRow = .Rows(.Rows.Count).Row End With 'display the number of the last row found by the macro MsgBox myLastRow End Sub
Effects of Executing Macro Example to Find the Last Row in the Used Range
The following image illustrates the effects of using the macro example. As expected, Excel returns the number (26) of the last row in the active sheet’s used range. Excel considers formatting (including conditional formatting) when keeping track of a worksheet’s used range.
#7: Find the Last Row by Searching
VBA Code to Find the Last Row by Searching
To find the last row by searching with VBA, use a macro with the following statement structure:
If Application.CountA(Range) = 0 Then LastRow = 0 Else LastRow = Range.Find(What:="*", LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row End If
Process to Find the Last Row by Searching
To find the last row by searching with VBA, follow these steps:
- Identify the cell range whose last row you want to find (Range).
- Test if Range is empty (If Application.CountA(Range) = 0).
- If Range is empty (Then), handle this situation by, for example, assigning the value of 0 to the variable that will hold the number of the last row (LastRow = 0).
- If Range isn’t empty (Else), search for the last cell in Range containing any character sequence (Range.Find(What:=”*”, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlPrevious)).
- Obtain the row number of that last cell containing any character sequence (Row).
- Assign the number of the last row to the appropriate variable (LastRow = …).
VBA Statement Explanation
Lines #1, #3 and #5: If Application.CountA(Range) = 0 Then | Else | End If
Item: If … Then | Else | End If
The If… Then… Else statement conditionally executes a group of statements (line #2 or line #4), depending on the value of an expression (Application.CountA(Range) = 0).
Item: Application.CountA(Range) = 0
Condition of the If… Then… Else statement, which evaluates to True or False as follows:
- True if all cells in Range are empty. For these purposes:
- Range is a Range object representing the cell range whose last row you want to find. You can usually work with, among others, the Worksheet.Range or Worksheet.Cells properties to refer to this Range object.
- The WorksheetFunction.CountA method (Application.CountA(Range)) counts the number of cells within Range that are not empty.
- False if at least 1 cell in Range isn’t empty.
In other words, this condition tests whether Range is empty (Application.CountA(Range) = 0) or not.
Line #2: LastRow = 0
Statement that is executed if the condition tested by the If… Then… Else statement (Application.CountA(Range) = 0) returns True.
LastRow is a variable of the Long data type to which you assign the number of the last row found by the macro.
If Range is empty (Application.CountA(Range) = 0), use the assignment operator (=) to assign an appropriate value (LastRow = 0 assigns the value of 0) to LastRow. In other words, use this statement (or set of statements) to handle the cases where Range is empty.
Line #4: LastRow = Range.Find(What:=”*”, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
Item: LastRow
Variable of the Long data type to which you assign the number of the last row found by the macro (Range.Find(What:=”*”, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row).
Item: =
The assignment operator (=) assigns the number of the last row found by the macro (Range.Find(What:=”*”, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row) to LastRow.
Item: Range
Range object representing the cell range whose last row you want to find.
You can usually work with, among others, the following properties to refer to this Range object:
- Worksheet.Range.
- Worksheet.Cells.
Item: Find(What:=”*”, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlPrevious)
The Range.Find method:
- Finds specific information in a cell range (Range); and
- Returns a Range object representing the first cell where the information is found.
When identifying the last row by searching, set the parameters of the Range.Find method as follows:
- What, which represents the data to search for, to “*” (What:=”*”). The asterisk (*) acts as a wildcard and results in Range.Find searching for any character sequence.
- LookIn, which specifies the type of data to search, to the xlFormulas built-in constant (or -4123) which refers to formulas (LookIn:=xlFormulas).
- LookAt, which specifies whether the match is made against the whole or any part of the search text, to the xlPart built-in constant (or 2) which matches against any part of the search text (LookAt:=xlPart).
- SearchOrder, which specifies the order in which to search the cell range, to the xlByRows built-in constant (or 1) which searches across a row and then moves to the next row (SearchOrder:=xlByRows).
- SearchDirection, which specifies the search direction, to the xlPrevious built-in constant (or 2) which searches for the previous match in the cell range (SearchDirection:=xlPrevious).
The settings for LookIn, LookAt, SearchOrder and MatchByte (used only if you have selected or installed double-byte language support) are saved every time you work with the Range.Find method. Therefore, if you don’t specify values for these parameters when searching for the last row, the saved values are used. Setting these parameters changes the settings in the Find dialog box and, vice-versa, changing the settings in the Find dialog box changes these parameters. Therefore, to reduce the risk of errors, set these arguments explicitly when searching for the last row.
Item: Row
The Range.Row property returns the number of the first row of the first area in the source range.
When identifying the last row by searching, the source range is the Range object returned by the Range.Find method (Range.Find(What:=”*”, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlPrevious)). This Range object represents the last cell (furthest down) in the cell range you work with (Range). Therefore, the Range.Row property returns the number of that last row.
Macro Example to Find the Last Row by Searching
The following macro (User-Defined Function) example finds the last row in the cell range passed as argument (myRange) by searching. If myRange is empty (Application.CountA(myRange) = 0), the User-Defined Function returns the number 0 (lastRowRangeFind = 0).
Function lastRowRangeFind(myRange As Range) As Long 'Source: https://powerspreadsheets.com/ 'finds the last row in myRange by searching for the last cell with any character sequence. If myRange is empty, assigns the 0 as the number of the last row 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'test if myRange is empty If Application.CountA(myRange) = 0 Then 'if myRange is empty, assign 0 to lastRowRangeFind lastRowRangeFind = 0 Else 'if myRange isn't empty, find the last cell with any character sequence (What:="*") by: '(1) Searching for the previous match (SearchDirection:=xlPrevious); '(2) Across rows (SearchOrder:=xlByRows) lastRowRangeFind = myRange.Find(What:="*", LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row End If End Function
Effects of Executing Macro Example to Find the Last Row by Searching
The following image illustrates the effects of using the macro (User-Defined Function) example. As expected, Excel returns the number (25) of the last row in the cell range passed as argument (A5 to E26) by searching.
#8: Find the Last Row in the Current Region
VBA Code to Find the Last Row in the Current Region
To find the last row in the current region with VBA, use a macro with the following statement structure:
With Cell.CurrentRegion LastRow = .Rows(.Rows.Count).Row End With
Process to Find the Last Row in the Current Region
To find the last row in the current region with VBA, follow these steps:
- Identify the current region whose last row you want to find (With Cell.CurrentRegion | End With).
- Identify the last row in the current region (.Rows(.Rows.Count)).
- Obtain the number of that last row in the current region (Row).
- Assign the number of the last row to a variable (LastRow = …).
VBA Statement Explanation
Lines #1 and #3: With Cell.CurrentRegion | End With
Item: With … | End With
The With… End With statement executes a series of statements (line #2) on a single object (Cell.CurrentRegion).
Item: Cell
Range object representing a cell in the current region whose last row you want to find.
You can usually work with, among others, the following properties to refer to this Range object:
- Worksheet.Range.
- Worksheet.Cells.
Item: CurrentRegion
The Range.CurrentRegion property returns a Range object representing the current region. The current region is a cell range bounded by a combination of:
- Blank rows; and
- Blank columns.
The Range.CurrentRegion property (basically) expands from Cell to include the entire current region.
Line #2: LastRow = .Rows(.Rows.Count).Row
Item: LastRow
Variable of the Long data type to which you assign the number of the last row found by the macro (.Rows(.Rows.Count).Row).
Item: =
The assignment operator (=) assigns the number of the last row found by the macro (.Rows(.Rows.Count).Row) to LastRow.
Item: .Rows(.Rows.Count)
The Range.Rows property returns a Range object representing the rows in the source range (Cell.CurrentRegion).
The Range.Count property returns the number of objects in a collection. When searching for the last row in the current region, the Range.Count property returns the number of rows in the source range (.Rows).
Therefore:
- .Rows returns a Range object representing all rows in Cell.CurrentRegion.
- .Rows.Count returns the number of rows in Cell.CurrentRegion.
.Rows.Count is used as an index number of the Range.Rows property (.Rows(.Rows.Count)). In other words, .Rows(.Rows.Count) refers to the row (within Cell.CurrentRegion) whose index number is equal to the number of rows in Cell.CurrentRegion (.Rows.Count). This is the last row in Cell.CurrentRegion.
Item: Row
The Range.Row property returns the number of the first row of the first area in the source range.
When searching for the last row in the current region, the source range is that last row of that current region (.Rows(.Rows.Count)). Therefore, the Range.Row property returns the number of that last row.
Macro Example to Find the Last Row in the Current Region
The following macro example finds the last row in the current region (myCell.CurrentRegion) containing cell A6 in the active worksheet (ActiveSheet.Range(“A6”)).
Sub lastRowInCurrentRegion() 'Source: https://powerspreadsheets.com/ 'finds the last row in the current region containing cell A6 in the active worksheet 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'declare object variable to represent source range Dim myCell As Range 'declare variable to hold value of last row Dim myLastRow As Long 'identify source range Set myCell = ActiveSheet.Range("A6") 'identify the current region containing myCell With myCell.CurrentRegion 'find the last row in the current region containing myCell myLastRow = .Rows(.Rows.Count).Row End With 'display the number of the last row found by the macro MsgBox myLastRow End Sub
Effects of Executing Macro Example to Find the Last Row in the Current Region
The following image illustrates the effects of using the macro example. As expected, Excel returns the number (25) of the last row in the current region containing cell A6.
#9: Find the Last Row in an Excel Table
VBA Code to Find the Last Row in an Excel Table
To find the last row in an Excel Table with VBA, use a macro with the following statement structure:
With ExcelTable.Range LastRow = .Rows(.Rows.Count).Row End With
Process to Find the Last Row in an Excel Table
To find the last row in an Excel Table with VBA, follow these steps:
- Identify the Excel Table whose last row you want to find (With ExcelTable.Range | End With).
- Identify the last row in the Excel Table (.Rows(.Rows.Count)).
- Obtain the number of that last row in the Excel Table (Row).
- Assign the number of the last row to a variable (LastRow = …).
VBA Statement Explanation
Lines #1 and #3: With ExcelTable.Range | End With
Item: With … | End With
The With… End With statement executes a series of statements (line #2) on a single object (ExcelTable.Range).
Item: ExcelTable
ListObject object representing the Excel Table whose last row you want to find.
You can usually work with the Worksheet.ListObjects property to refer to this ListObject object.
Item: Range
The ListObject.Range property returns a Range object representing the cell range to which ExcelTable applies.
Line #2: LastRow = .Rows(.Rows.Count).Row
Item: LastRow
Variable of the Long data type to which you assign the number of the last row found by the macro (.Rows(.Rows.Count).Row).
Item: =
The assignment operator (=) assigns the number of the last row found by the macro (.Rows(.Rows.Count).Row) to LastRow.
Item: .Rows(.Rows.Count)
The Range.Rows property returns a Range object representing the rows in the source range (ExcelTable.Range).
The Range.Count property returns the number of objects in a collection. When searching for the last row in an Excel Table, the Range.Count property returns the number of rows in the source range (.Rows).
Therefore:
- .Rows returns a Range object representing all rows in ExcelTable.Range.
- .Rows.Count returns the number of rows in ExcelTable.Range.
.Rows.Count is used as an index number of the Range.Rows property (.Rows(.Rows.Count)). In other words, .Rows(.Rows.Count) refers to the row (within ExcelTable.Range) whose index number is equal to the number of rows in ExcelTable.Range (.Rows.Count). This is the last row in ExcelTable.Range.
Item: Row
The Range.Row property returns the number of the first row of the first area in the source range.
When searching for the last row in an Excel Table, the source range is that last row of the Excel Table (.Rows(.Rows.Count)). Therefore, the Range.Row property returns the number of that last row.
Macro Example to Find the Last Row in an Excel Table
The following macro (User-Defined Function) example finds the last row in an Excel Table (ListObjects(myTableIndex).Range):
- Located in the same worksheet as that where the User-Defined Function is used in a worksheet formula (Application.Caller.Parent); and
- Whose index number is passed as argument of the User-Defined Function (myTableIndex).
Function lastRowInTable(myTableIndex As Long) As Long 'Source: https://powerspreadsheets.com/ 'finds the last column in an Excel Table (in the same worksheet as that where the User-Defined Function is used and whose index number is myTableIndex) 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'identify the cell range containing the Excel Table located in the same worksheet as that where the User-Defined Function is used and whose index number is myTableIndex With Application.Caller.Parent.ListObjects(myTableIndex).Range 'find the last row in the Excel Table lastRowInTable = .Rows(.Rows.Count).Row End With End Function
Effects of Executing Macro Example to Find the Last Row in an Excel Table
The following image illustrates the effects of using the macro (User-Defined Function) example. As expected, Excel returns the number (25) of the last row in the Excel Table whose index number (1) is passed as argument.
#10: Find the Last Row in a Named Cell Range
VBA Code to Find the Last Row in a Named Cell Range
To find the last row in a named cell range with VBA, use a macro with the following statement structure:
With NamedRange LastRow = .Rows(.Rows.Count).Row End With
Process to Find the Last Row in a Named Cell Range
To find the last row in a named cell range with VBA, follow these steps:
- Identify the named cell range whose last row you want to find (With NamedRange | End With).
- Identify the last row in the named cell range (.Rows(.Rows.Count)).
- Obtain the number of that last row in the named cell range (Row).
- Assign the number of the last row to a variable (LastRow = …).
VBA Statement Explanation
Lines #1 and #3: With NamedRange | End With
The With… End With statement executes a series of statements (line #2) on a single object (NamedRange).
NamedRange is a Range object representing the named cell range whose last row you want to find. You can usually work with the Worksheet.Range property to refer to this Range object.
Line #2: LastRow = .Rows(.Rows.Count).Row
Item: LastRow
Variable of the Long data type to which you assign the number of the last row found by the macro (.Rows(.Rows.Count).Row).
Item: =
The assignment operator (=) assigns the number of the last row found by the macro (.Rows(.Rows.Count).Row) to LastRow.
Item: .Rows(.Rows.Count)
The Range.Rows property returns a Range object representing the rows in the source range (NamedRange).
The Range.Count property returns the number of objects in a collection. When searching for the last row in a named cell range, the Range.Count property returns the number of rows in the source range (.Rows).
Therefore:
- .Rows returns a Range object representing all rows in NamedRange.
- .Rows.Count returns the number of rows in NamedRange.
.Rows.Count is used as an index number of the Range.Rows property (.Rows(.Rows.Count)). In other words, .Rows(.Rows.Count) refers to the row (within NamedRange) whose index number is equal to the number of rows in NamedRange (.Rows.Count). This is the last row in NamedRange.
Item: Row
The Range.Row property returns the number of the first row of the first area in the source range.
When searching for the last row in a named cell range, the source range is the last row of that named cell range (.Rows(.Rows.Count)). Therefore, the Range.Row property returns the number of that last row.
Macro Example to Find the Last Row in a Named Cell Range
The following macro (User-Defined Function) example finds the last row in a named cell range (Range(myRangeName)):
- Located in the same worksheet as that where the User-Defined Function is used in a worksheet formula (Application.Caller.Parent); and
- Whose name is passed as argument of the User-Defined Function (myRangeName).
Function lastRowInNamedRange(myRangeName As String) As Long 'Source: https://powerspreadsheets.com/ 'finds the last row in a named cell range (in the same worksheet as that where the User-Defined Function is used and whose name is myRangeName) 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'identify the named cell range whose name is myRangeName With Application.Caller.Parent.Range(myRangeName) 'find the last row in myRangeName lastRowInNamedRange = .Rows(.Rows.Count).Row End With End Function
Effects of Executing Macro Example to Find the Last Row in a Named Cell Range
The following image illustrates the effects of using the macro (User-Defined Function) example. As expected, Excel returns the number (25) of the last row in the named cell range passed as argument (namedRangeRow).
#11: Find the Last Column in a Row Before an Empty Cell
VBA Code to Find the Last Column in a Row Before an Empty Cell
To find the last column in a row before an empty cell with VBA, use a statement with the following structure:
LastColumn = CellInRow.End(xlToRight).Column
Process to Find the Last Column in a Row Before an Empty Cell
To find the last column in a row before an empty cell with VBA, follow these steps:
- Identify a cell in the row whose last row (before an empty cell) you want to find (CellInRow). This cell should be located to the left of the empty cell.
- Move to the right of the row to the end of the region (End(xlToRight)). This takes you to the cell immediately before (to the left of) the empty cell.
- Obtain the column number of that last cell immediately before the empty cell (Column).
- Assign the number of the last column to a variable (LastColumn = …).
VBA Statement Explanation
Item: LastColumn
Variable of the Long data type to which you assign the number of the last column found by the macro (CellInRow.End(xlToRight).Column).
Item: =
The assignment operator (=) assigns the number of the last column found by the macro (CellInRow.End(xlToRight).Column) to LastColumn.
Item: CellInRow
Range object representing a cell in the row whose last column (before an empty cell) you want to find. The cell represented by Range should be located to the left of the empty cell.
You can usually work with, among others, the following properties to refer to this Range object:
- Worksheet.Range.
- Worksheet.Cells.
Item: End(xlToRight)
The Range.End property returns a Range object representing the cell at the end of the region containing the source range (CellInRow).
When searching for the last column in a row (before an empty cell), set the Direction parameter of the Range.End property to xlToRight. xlToRight specifies the direction in which to move (right).
CellInRow.End(xlToRight) is the equivalent to pressing the “Ctrl+Right Arrow” keyboard shortcut when CellInRow is the active cell.
Item: Column
The Range.Column property returns the number of the first column of the first area in the source range.
When searching for the last column in a row (before an empty cell), the source range is the cell immediately to the left of that empty cell (CellInRow.End(xlToRight)). Therefore, the Range.Column property returns the number of that column immediately before (to the left of) the applicable empty cell.
Macro Example to Find the Last Column in a Row Before an Empty Cell
The following macro (User-Defined Function) example finds the last column (before an empty cell) in the row containing the cell passed as argument (myCell).
Function lastColumnInRowBeforeBlank(myCell As Range) As Long 'Source: https://powerspreadsheets.com/ 'finds the last column (before an empty cell) in the row containing myCell 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'find the last column (before an empty cell) in the row containing myCell lastColumnInRowBeforeBlank = myCell.End(xlToRight).Column End Function
Effects of Executing Macro Example to Find the Last Column in a Row Before an Empty Cell
The following image illustrates the effects of using the macro (User-Defined Function) example. As expected, Excel returns the number (2) of the last column before an empty cell (C6) in the column containing the cell passed as argument (A6).
#12: Find the Last Column Among Several Rows Before Empty Cells
VBA Code to Find the Last Column Among Several Rows Before Empty Cells
To find the last column (furthest to the right, before empty cells) among several rows with VBA, use a macro with the following statement structure:
OverallLastColumn = 0 With Range For Counter = .Row To .Rows(.Rows.Count).Row RowLastColumn = .Parent.Cells(Counter, .Column).End(xlToRight).Column If RowLastColumn > OverallLastColumn Then OverallLastColumn = RowLastColumn Next Counter End With
Process to Find the Last Column Among Several Rows Before Empty Cells
To find the last column (furthest to the right, before empty cells) among several rows with VBA, follow these steps:
- Initialize the variable that will hold the number of the overall (across all rows) last column by setting it to 0 (OverallLastColumn = 0).
- Identify a cell range containing cells in the (several) rows you consider when searching for the last column before empty cells (With Range | End With). This cell range should begin to the left of the empty cells.
- Loop through each row in Range (For Counter = .Row To .Rows(.Rows.Count).Row | Next Counter).
- Identify a cell in the row you’re currently working with (.Parent.Cells(Counter, .Column)).
- Move to the right of the row to the end of the region (End(xlToRight)). This takes you to the cell immediately before (to the left of) the empty cell in that row.
- Obtain the column number of that last cell immediately before the empty cell (Column).
- Assign the number of the last column in the row you’re working with to a variable (RowLastColumn = …).
- Test if the number of the last column in the row you’re working with (RowLastColumn) is larger than the value currently held by the variable (OverallLastColumn) that holds the overall (across all rows) last column number (If RowLastColumn > OverallLastColumn).
- If the number of the last column in the row you’re working with (RowLastColumn) is larger than the value currently held by the variable (OverallLastColumn) that holds the overall (across all rows) last column number, update the value held by the variable (Then OverallLastColumn = RowLastColumn).
VBA Statement Explanation
Line #1: OverallLastColumn = 0
OverallLastColumn is a variable of the Long data type to which you assign the number of the last column (among several rows) found by the macro.
The assignment operator (=) initializes OverallLastColumn by assigning the value of 0.
Lines #2 and #7: With Range | End With
The With… End With statement executes a series of statements (lines #3 through #6) on a single object (Range).
Range is a Range object representing a cell range containing cells in the (several) rows you consider when searching for the last column (before empty cells). This cell range should begin to the left of those empty cells.
You can usually work with, among others, the Worksheet.Range property to refer to this Range object.
Lines #3 and #6: For Counter = .Row To .Rows(.Rows.Count).Row | Next Counter
Item: For Counter = … To … | Next Counter
The For… Next statement repeats a group of statements (lines #4 and #5) a specific number of times (.Row To .Rows(.Rows.Count).Row).
Counter is the loop counter. If you explicitly declare a variable to represent Counter, you can usually declare it as of the Long data type.
The following are the initial and final values of Counter:
- Initial value: The number of the first row in Range (.Row).
- Final value: The number of the last row in Range (.Rows(.Rows.Count).Row).
Therefore, the For… Next statement loops through all the rows in Range.
Item: .Row
The Range.Row property returns the number of the first row of the first area in the source range (Range).
When searching for the last column among several rows (before empty cells), you use the Range.Row property twice, as follows:
- .Row returns the number of the first row in Range.
- .Rows(.Rows.Count).Row returns the number of the last row in Range.
Item: .Rows(.Rows.Count).Row
The Range.Rows property returns a Range object representing the rows in the source range (Range).
The Range.Count property returns the number of objects in a collection. When searching for the last column among several rows (before empty cells), the Range.Count property returns the number of rows in the source range (.Rows).
Therefore:
- .Rows returns a Range object representing all rows in Range.
- .Rows.Count returns the number of rows in Range.
.Rows.Count is used as an index number of the Range.Rows property (.Rows(.Rows.Count)). In other words, .Rows(.Rows.Count) refers to the row (within Range) whose index number is equal to the number of rows in Range (.Rows .Count). This is the last row in Range.
Line #4: RowLastColumn = .Parent.Cells(Counter, .Column).End(xlToRight).Column
Item: RowLastColumn
Variable of the Long data type to which you assign the number of the last column in the current row (row number Counter) found by the macro (.Parent.Cells(Counter, .Column).End(xlToRight).Column).
Item: =
The assignment operator (=) assigns the number of the last column found by the macro in the current row (.Parent.Cells(Counter, .Column).End(xlToRight).Column) to RowLastColumn.
Item: Parent
The Range.Parent property returns the parent object of the source range (Range).
When searching for the last column among several rows, the Range.Parent property returns a Worksheet object representing the worksheet that contains Range.
Item: Cells(Counter, .Column)
The Worksheet.Cells property returns a Range object representing all the cells in the worksheet. If you specify the row and column index, the Worksheet.Cells property returns a Range object representing the cell at the intersection of the specified row and column.
When searching for the last column among several rows (before empty cells):
- Counter is the row index and loop counter of the For… Next statement that iterates through all the rows in Range.
- .Column is the column index. The Range.Column property returns the number of the first column of the first area in the source range (Range).
Therefore, the Worksheet.Cells property returns a Range object representing the cell at the intersection of:
- The row through which the For… Next loop is currently iterating (Counter); and
- The first column of Range (.Column).
Item: End(xlToRight)
The Range.End property returns a Range object representing the cell at the end of the region containing the source range (Cells(Counter, .Column)).
When searching for the last column among several rows (before empty cells), set the Direction parameter of the Range.End property to xlToRight. xlToRight specifies the direction in which to move (right).
.Parent.Cells(Counter, .Column).End(xlToRight) is the equivalent to pressing the “Ctrl+Right Arrow” keyboard shortcut when .Parent.Cells(Counter, .Column) is the active cell.
Item: Column
The Range.Column property returns the number of the first column of the first area in the source range.
When searching for the last column in a row (row number Counter, before an empty cell), the source range is the cell immediately to the left of that empty cell (.Parent.Cells(Counter, .Column).End(xlToRight)). Therefore, the Range.Column property returns the number of that column immediately before (to the left of) the applicable empty cell.
Line #5: If RowLastColumn > OverallLastColumn Then OverallLastColumn = RowLastColumn
Item: If … Then …
The If… Then… statement conditionally executes a group of statements (OverallLastColumn = RowLastColumn), depending on the value of an expression (RowLastColumn > OverallLastColumn).
Item: RowLastColumn > OverallLastColumn
Condition of the If… Then… statement, which evaluates to True or False as follows:
- True if RowLastColumn is larger than (>) OverallLastColumn.
- False otherwise.
Item: OverallLastColumn = RowLastColumn
Statement that is executed if the condition tested by the If… Then… statement (RowLastColumn > OverallLastColumn) returns True.
The assignment operator (=) assigns the value held by RowLastColumn to OverallLastColumn.
Macro Example to Find the Last Column Among Several Rows Before Empty Cells
The following macro (User-Defined Function) example finds the last column (before empty cells) among the rows containing the cell range passed as argument (myRange).
Function lastColumnInSeveralRowsBeforeBlank(myRange As Range) As Long 'Source: https://powerspreadsheets.com/ 'finds the last column (before empty cells) in the rows containing myRange 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'declare variables to represent loop counter and hold value of last column in current row Dim iCounter As Long Dim myRowLastColumn As Long 'initialize variable that holds the number of the (overall) last column across several rows lastColumnInSeveralRowsBeforeBlank = 0 With myRange 'loop through each row in myRange For iCounter = .Row To .Rows(.Rows.Count).Row 'find last column (before an empty cell) in the current row myRowLastColumn = .Parent.Cells(iCounter, .Column).End(xlToRight).Column 'if the number of the last column in the current row is larger than the column number held by lastColumnInSeveralRowsBeforeBlank, update value held by lastColumnInSeveralRowsBeforeBlank If myRowLastColumn > lastColumnInSeveralRowsBeforeBlank Then lastColumnInSeveralRowsBeforeBlank = myRowLastColumn Next iCounter End With End Function
Effects of Executing Macro Example to Find the Last Column Among Several Rows Before Empty Cells
The following image illustrates the effects of using the macro (User-Defined Function) example. As expected, Excel returns the number (5) of the last column before empty cells (column F) among the columns containing the cell range passed as argument (A6 to A25).
#13: Find the Last Column in a Row
VBA Code to Find the Last Column in a Row
To find the last column in a row with VBA, use a macro with the following statement structure:
With CellInRow.Parent LastColumn = .Cells(CellInRow.Row, .Columns.Count).End(xlToLeft).Column End With
Process to Find the Last Column in a Row
To find the last column in a row with VBA, follow these steps:
- Identify a cell in the row whose last column you want to find (CellInRow) and the worksheet containing this cell (CellInRow.Parent).
- Identify the last worksheet cell in the row containing CellInRow (.Cells(CellInRow.Row, .Columns.Count)).
- Move towards the left of the row to the end of the region (End(xlToLeft)). This takes you to the last cell in the row.
- Obtain the column number of that last cell in the row (Column).
- Assign the number of the last column to a variable (LastColumn = …).
VBA Statement Explanation
Lines #1 and #3: With CellInRow.Parent | End With
Item: With … | End With
The With… End With statement executes a series of statements (line #2) on a single object (CellInRow.Parent).
Item: CellInRow.
Range object representing a cell in the row whose last column you want to find.
You can usually work with, among others, the following properties to refer to this Range object:
- Worksheet.Range.
- Worksheet.Cells.
Item: Parent
The Range.Parent property returns the parent object of the source range (CellInRow).
When searching for the last column in a row, the Range.Parent property returns a Worksheet object representing the worksheet that contains CellInRow.
Line #2: LastColumn = .Cells(CellInRow.Row, .Columns.Count).End(xlToLeft).Column
Item: LastColumn
Variable of the Long data type to which you assign the number of the last column found by the macro (.Cells(CellInRow.Row, .Columns.Count).End(xlToLeft).Column).
Item: =
The assignment operator (=) assigns the number of the last column found by the macro (.Cells(CellInRow.Row, .Columns.Count).End(xlToLeft).Column) to LastColumn.
Item: .Cells(CellInRow.Row, .Columns.Count)
The Worksheet.Cells property returns a Range object representing all the cells in the worksheet. If you specify the row and column index, the Worksheet.Cells property returns a Range object representing the cell at the intersection of the specified row and column.
When searching for the last column in a row:
- CellInRow.Row is the row index and returns the number of the row containing CellInRow. For these purposes, the Range.Row property returns the number of the first row of the first area in the source range (CellInRow).
- .Columns.Count is the column index and returns the number of the last column in the worksheet (CellInRow.Parent). For these purposes:
- The Worksheet.Columns property returns a Range object representing all columns on the worksheet (CellInRow.Parent).
- The Range.Count property returns the number of objects in a collection. When searching for the last column in a row, the Range.Count property returns the number of columns in the worksheet (CellInColumn.Parent).
Therefore, the Worksheet.Cells property returns a Range object representing the cell at the intersection of:
- The row containing CellInRow (CellInRow.Row); and
- The last column of the worksheet (.Columns.Count).
Item: End(xlToLeft)
The Range.End property returns a Range object representing the cell at the end of the region containing the source range (.Cells(CellInRow.Row, .Columns.Count)).
When searching for the last column in a row, set the Direction parameter of the Range.End property to xlToLeft. xlToLeft specifies the direction in which to move (left).
.Cells(CellInRow.Row, .Columns.Count).End(xlToLeft) is the equivalent to pressing the “Ctrl+Left Arrow” keyboard shortcut when .Cells(CellInRow.Row, .Columns.Count) is the active cell.
Item: Column
The Range.Column property returns the number of the first column of the first area in the source range.
When searching for the last column in a row, the source range is the last cell in the row (.Cells(CellInRow.Row, .Columns.Count).End(xlToLeft)). Therefore, the Range.Column property returns the number of that last column.
Macro Example to Find the Last Column in a Row
The following macro (User-Defined Function) example finds the last column in the row containing the cell passed as argument (myCell).
Function lastColumnInRow(myCell As Range) As Long 'Source: https://powerspreadsheets.com/ 'finds the last column in the row containing myCell 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'identify worksheet containing myCell With myCell.Parent 'find the last column in the row containing myCell lastColumnInRow = .Cells(myCell.Row, .Columns.Count).End(xlToLeft).Column End With End Function
Effects of Executing Macro Example to Find the Last Column in a Row
The following image illustrates the effects of using the macro (User-Defined Function) example. As expected, Excel returns the number (5) of the last column in the column containing the cell passed as argument (A7).
#14: Find the Last Column Among Several Rows
VBA Code to Find the Last Column Among Several Rows
To find the last column (furthest to the right) among several columns with VBA, use a macro with the following statement structure:
OverallLastColumn = 0 With Range For Counter = .Row To .Rows(.Rows.Count).Row With .Parent RowLastColumn = .Cells(Counter, .Columns.Count).End(xlToLeft).Column If RowLastColumn > OverallLastColumn Then OverallLastColumn = RowLastColumn End With Next Counter End With
Process to Find the Last Column Among Several Rows
To find the last column (furthest to the right) among several columns with VBA, follow these steps:
- Initialize the variable that will hold the number of the overall (across all rows) last column by setting it to 0 (OverallLastColumn = 0).
- Identify a cell range containing cells in the (several) rows you consider when searching for the last column (With Range | End With).
- Loop through each row in Range (For Counter = .Row To .Rows(.Rows.Count).Row | Next Counter).
- Identify the worksheet containing Range (With .Parent | End With).
- Identify the last worksheet cell in the row you’re currently working with (.Cells(Counter, .Columns.Count)).
- Move towards the left of the row to the end of the region (End(xlToLeft)). This takes you to the last cell in the row.
- Obtain the column number of that last cell in the row (Column).
- Assign the number of the last column in the row you’re working with to a variable (RowLastColumn = …).
- Test if the number of the last column in the row you’re working with (RowLastColumn) is larger than the value currently held by the variable (OverallLastColumn) that holds the overall (across all rows) last column number (If RowLastColumn > OverallLastColumn).
- If the number of the last column in the row you’re working with (RowLastColumn) is larger than the value currently held by the variable (OverallLastColumn) that holds the overall (across all rows) last column number, update the value held by the variable (Then OverallLastColumn = RowLastColumn).
VBA Statement Explanation
Line #1: OverallLastColumn = 0
OverallLastColumn is a variable of the Long data type to which you assign the number of the last column among several rows found by the macro.
The assignment operator (=) initializes OverallLastColumn by assigning the value of 0.
Lines #2 and #9: With Range | End With
The With… End With statement executes a series of statements (lines #3 through #8) on a single object (Range).
Range is a Range object representing a cell range containing cells in the (several) rows you consider when searching for the last column.
You can usually work with, among others, the Worksheet.Range property to refer to this Range object.
Lines #3 and #8: For Counter = .Row To .Rows(.Rows.Count).Row | Next Counter
Item: For Counter = … To … | Next Counter
The For… Next statement repeats a group of statements (lines #4 to #7) a specific number of times (.Row To .Rows(.Rows.Count).Row).
Counter is the loop counter. If you explicitly declare a variable to represent Counter, you can usually declare it as of the Long data type.
The following are the initial and final values of Counter:
- Initial value: The number of the first row in Range (.Row).
- Final value: The number of the last row in Range (.Rows(.Rows.Count).Row).
Therefore, the For… Next statement loops through all the rows in Range.
Item: .Row
The Range.Row property returns the number of the first row of the first area in the source range (Range).
When searching for the last column among several rows, you use the Range.Row property twice, as follows:
- .Row returns the number of the first row in Range.
- .Rows(.Rows.Count).Row returns the number of the last row in Range.
Item: .Rows(.Rows.Count).Row
The Range.Rows property returns a Range object representing the rows in the source range (Range).
The Range.Count property returns the number of objects in a collection. When searching for the last column among several rows, the Range.Count property returns the number of rows in the source range (.Rows).
Therefore:
- .Rows returns a Range object representing all rows in Range.
- .Rows.Count returns the number of rows in Range.
.Rows.Count is used as an index number of the Range.Rows property (.Rows(.Rows.Count)). In other words, .Rows(.Rows.Count) refers to the row (within Range) whose index number is equal to the number of rows in Range (.Rows.Count). This is the last row in Range.
Lines #4 and #7: With .Parent | End With
The With… End With statement executes a series of statements (lines #5 and #6) on a single object (.Parent).
The Range.Parent property returns the parent object of the source range (Range). When searching for the last column among several rows, the Range.Parent property returns a Worksheet object representing the worksheet that contains Range.
Line #5: RowLastColumn = .Cells(Counter, .Columns.Count).End(xlToLeft).Column
Item: RowLastColumn
Variable of the Long data type to which you assign the number of the last column in the current row (row number Counter) found by the macro (.Cells(Counter, .Columns.Count).End(xlToLeft).Column).
Item: =
The assignment operator (=) assigns the number of the last column found by the macro in the current row (.Cells(Counter, .Columns.Count).End(xlToLeft).Column) to RowLastColumn.
Item: .Cells(Counter, .Columns.Count)
The Worksheet.Cells property returns a Range object representing all the cells in the worksheet. If you specify the row and column index, the Worksheet.Cells property returns a Range object representing the cell at the intersection of the specified row and column.
When searching for the last column among several rows:
- Counter is the row index and loop counter of the For… Next statement that iterates through all the rows in Range.
- .Columns.Count is the column index and returns the number of the last column in the worksheet (Range.Parent). For these purposes:
- The Worksheet.Columns property returns a Range object representing all column on the worksheet (Range.Parent).
- The Range.Count property returns the number of objects in a collection. When searching for the last column among several rows, the Range.Count property returns the number of columns in the worksheet (Range.Parent).
Therefore, the Worksheet.Cells property returns a Range object representing the cell at the intersection of:
- The row through which the For… Next loop is currently iterating (Counter); and
- The last column of the worksheet (.Columns.Count).
Item: End(xlToLeft)
The Range.End property returns a Range object representing the cell at the end of the region containing the source range (.Cells(Counter, .Columns.Count)).
When searching for the last column among several rows, set the Direction parameter of the Range.End property to xlToLeft. xlToLeft specifies the direction in which to move (left).
.Cells(Counter, .Columns.Count).End(xlToLeft) is the equivalent to pressing the “Ctrl+Left Arrow” keyboard shortcut when .Cells(Counter, .Columns.Count) is the active cell.
Item: Column
The Range.Column property returns the number of the first column of the first area in the source range.
When searching for the last column in a row (row number Counter), the source range is the last cell in the row (.Cells(Counter, .Columns.Count).End(xlToLeft)). Therefore, the Range.Column property returns the number of that last column.
Line #6: If RowLastColumn > OverallLastColumn Then OverallLastColumn = RowLastColumn
Item: If … Then …
The If… Then… statement conditionally executes a group of statements (OverallLastColumn = RowLastColumn), depending on the value of an expression (RowLastColumn > OverallLastColumn).
Item: RowLastColumn > OverallLastColumn
Condition of the If… Then… statement, which evaluates to True or False as follows:
- True if RowLastColumn is larger than (>) OverallLastColumn.
- False otherwise.
Item: OverallLastColumn = RowLastColumn
Statement that is executed if the condition tested by the If… Then… statement (RowLastColumn > OverallLastColumn) returns True.
The assignment operator (=) assigns the value held by RowLastColumn to OverallLastColumn .
Macro Example to Find the Last Column Among Several Rows
The following macro (User-Defined Function) example finds the last column among the rows containing the cell range passed as argument (myRange).
Function lastColumnInSeveralRows(myRange As Range) As Long 'Source: https://powerspreadsheets.com/ 'finds the last column in the rows containing myRange 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'declare variables to represent loop counter and hold value of last column in current row Dim iCounter As Long Dim myRowLastColumn As Long 'initialize variable that holds the number of the (overall) last column across several rows lastColumnInSeveralRows = 0 With myRange 'loop through each row in myRange For iCounter = .Row To .Rows(.Rows.Count).Row 'work with the worksheet containing myRange With .Parent 'find last column in the current row myRowLastColumn = .Cells(iCounter, .Columns.Count).End(xlToLeft).Column 'if the number of the last column in the current row is larger than the column number held by lastColumnInSeveralRows, update value held by lastColumnInSeveralRows If myRowLastColumn > lastColumnInSeveralRows Then lastColumnInSeveralRows = myRowLastColumn End With Next iCounter End With End Function
Effects of Executing Macro Example to Find the Last Column Among Several Rows
The following image illustrates the effects of using the macro (User-Defined Function) example. As expected, Excel returns the number (5) of the last column among the rows containing the cell range passed as argument (A7 to A25).
#15: Find the Last Column by Going to the Last Cell in the Used Range
VBA Code to Find the Last Column by Going to the Last Cell in the Used Range
To find the last column by going to the last cell in the used range with VBA, use a macro with the following statement structure:
Worksheet.UsedRange LastColumn = Worksheet.Cells.SpecialCells(xlCellTypeLastCell).Column
Process to Find the Last Column by Going to the Last Cell in the Used Range
To find the last column by going to the last cell in the used range with VBA, follow these steps:
- Identify the worksheet whose last column you want to find (Worksheet).
- Attempt to reset the used range of Worksheet (Worksheet.UsedRange).
- Identify the last cell in the used range of Worksheet (Worksheet.Cells.SpecialCells(xlCellTypeLastCell)).
- Obtain the column number of that last cell in the used range (Column).
- Assign the number of the last column to a variable (LastColumn = …).
VBA Statement Explanation
Line #1: Worksheet.UsedRange
Item: Worksheet
Worksheet object representing the worksheet whose last column (in the used range) you want to find.
You can usually work with, among others, the following properties to refer to this Worksheet object:
- Application.ActiveSheet.
- Workbook.Worksheets.
Item: UsedRange
The Worksheet.UsedRange property returns a Range object representing the used range of Worksheet.
From a broad perspective, you can think of the used range as the cell range encompassing all “used” cells within a worksheet.
Working with the Worksheet.UsedRange property can be tricky. One of the main challenges associated with relying on this property is that Excel retains cells that aren’t longer in use (but have been) and considers them when calculating the used range.
Therefore, prior to using VBA code that relies on Excel’s calculation of the used range, you may want to (try to) reset it. The following 2 alternative statements are commonly used for these purposes:
'alternative #1 (used in this Tutorial) Worksheet.UsedRange 'alternative #2 (relies on the Range.Count property) columnsCount = Worksheet.UsedRange.Columns.Count
There are cases in which these used-range-resetting statements fail.
Line #2: LastColumn = Worksheet.Cells.SpecialCells(xlCellTypeLastCell).Column
Item: LastColumn
Variable of the Long data type to which you assign the number of the last column found by the macro (Worksheet.Cells.SpecialCells(xlCellTypeLastCell).Column).
Item: =
The assignment operator (=) assigns the number of the last column found by the macro (Worksheet.Cells.SpecialCells(xlCellTypeLastCell).Column) to LastColumn.
Item: Worksheet
Worksheet object representing the worksheet whose last column (in the used range) you want to find. This worksheet should be the same whose used range you attempt to reset (line #1).
You can usually work with, among others, the following properties to refer to this Worksheet object:
- Application.ActiveSheet.
- Workbook.Worksheets.
Item: Cells
The Worksheet.Cells property returns a Range object representing all the cells in Worksheet.
Item: SpecialCells(xlCellTypeLastCell)
The Range.SpecialCells method returns a Range object representing the cells that match a specific type and value.
When Searching for the last column by going to the last cell in the used range, set the Type parameter of the Range.SpecialCells method to the xlCellTypeLastCell built-in constant (or 11). This results in Range.SpecialCells returning a Range object that represents the last cell in the used range.
Item: Column
The Range.Column property returns the number of the first column of the first area in the source range.
When searching for the last column by going to the last cell in the used range, the source range is that last cell of the used range (Worksheet.Cells.SpecialCells(xlCellTypeLastCell)). Therefore, the Range.Column property returns the number of that last column.
Macro Example to Find the Last Column by Going to the Last Cell in the Used Range
The following macro example finds the last column in the active sheet (ActiveSheet) by going to the last cell in the used range (Cells.SpecialCells(xlCellTypeLastCell)).
Sub lastColumnInWorksheetXlCellTypeLastCell() 'Source: https://powerspreadsheets.com/ 'finds the last column in the active sheet's used range 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'declare variable to hold value of last column Dim myLastColumn As Long 'attempt to reset the active sheet's used range ActiveSheet.UsedRange 'find the last column in the active sheet by, previously, identifying the last cell in the used range myLastColumn = ActiveSheet.Cells.SpecialCells(xlCellTypeLastCell).Column 'display the number of the last column found by the macro MsgBox myLastColumn End Sub
Effects of Executing Macro Example to Find the Last Column by Going to the Last Cell in the Used Range
The following image illustrates the effects of using the macro example. As expected, Excel returns the number (6) of the last column in the active sheet’s used range. Excel considers formatting (including conditional formatting) when keeping track of a worksheet’s used range.
#16: Find the Last Column in the Used Range
VBA Code to Find the Last Column in the Used Range
To find the last column in the used range with VBA, use a macro with the following statement structure:
Worksheet.UsedRange With Worksheet.UsedRange LastColumn = .Columns(.Columns.Count).Column End With
Process to Find the Last Column in the Used Range
To find the last column in the used range with VBA, follow these steps:
- Identify the worksheet whose last column you want to find (Worksheet).
- Attempt to reset the used range of Worksheet (Worksheet.UsedRange).
- Work with the used range of Worksheet (With Worksheet.UsedRange | End With).
- Identify the last column in the used range of Worksheet (.Columns(.Columns.Count)).
- Obtain the number of that last column in the used range (Column).
- Assign the number of the last column to a variable (Column = …).
VBA Statement Explanation
Line #1: Worksheet.UsedRange
Item: Worksheet
Worksheet object representing the worksheet whose last column (in the used range) you want to find.
You can usually work with, among others, the following properties to refer to this Worksheet object:
- Application.ActiveSheet.
- Workbook.Worksheets.
Item: UsedRange
The Worksheet.UsedRange property returns a Range object representing the used range of Worksheet.
From a broad perspective, you can think of the used range as the cell range encompassing all “used” cells within a worksheet.
Working with the Worksheet.UsedRange property can be tricky. One of the main challenges associated with relying on this property is that Excel retains cells that aren’t longer in use (but have been) and considers them when calculating the used range.
Therefore, prior to using VBA code that relies on Excel’s calculation of the used range, you may want to (try to) reset it. The following 2 alternative statements are commonly used for these purposes:
'alternative #1 (used in this Tutorial) Worksheet.UsedRange 'alternative #2 (relies on the Range.Count property) columnsCount = Worksheet.UsedRange.Columns.Count
There are cases in which these used-range-resetting statements fail.
Lines #2 and #4: With Worksheet.UsedRange | End With
Item: With … | End With
The With… End With statement executes a series of statements (line #3) on a single object (Worksheet.UsedRange).
Item: Worksheet
Worksheet object representing the worksheet whose last column (in the used range) you want to find. This worksheet should be the same whose used range you attempt to reset (line #1).
You can usually work with, among others, the following properties to refer to this Worksheet object:
- Application.ActiveSheet.
- Workbook.Worksheets.
Item: UsedRange
The Worksheet.UsedRange property returns a Range object representing the used range of Worksheet. From a broad perspective, you can think of the used range as the cell range encompassing all “used” cells within a worksheet.
Line #3: LastColumn = .Columns(.Columns.Count).Column
Item: LastColumn
Variable of the Long data type to which you assign the number of the last column found by the macro (.Columns(.Columns.Count).Column).
Item: =
The assignment operator (=) assigns the number of the last column found by the macro (.Columns(.Columns.Count).Column) to LastColumn.
Item: .Columns(.Columns.Count)
The Range.Columns property returns a Range object representing the columns in the source range (Worksheet.UsedRange).
The Range.Count property returns the number of objects in a collection. When searching for the last column in the used range, the Range.Count property returns the number of columns in the source range (.Columns).
Therefore:
- .Columns returns a Range object representing all columns in Worksheet.UsedRange.
- .Columns.Count returns the number of columns in Worksheet.UsedRange.
.Columns.Count is used as an index number of the Range.Columns property (.Columns(.Columns.Count)). In other words, .Columns(.Columns.Count) refers to the column (within Worksheet.UsedRange) whose index number is equal to the number of columns in Worksheet.UsedRange (.Columns.Count). This is the last column in Worksheet.UsedRange.
Item: Column
The Range.Column property returns the number of the first column of the first area in the source range.
When searching for the last column in the used range, the source range is that last column in the used range (.Columns(.Columns.Count)). Therefore, the Range.Column property returns the number of that last column.
Macro Example to Find the Last Column in the Used Range
The following macro example finds the last column in the used range of the active sheet (ActiveSheet.UsedRange).
Sub lastColumnInWorksheetUsedRange() 'Source: https://powerspreadsheets.com/ 'finds the last column in the active sheet's used range 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'declare variable to hold value of last column Dim myLastColumn As Long 'attempt to reset the active sheet's used range ActiveSheet.UsedRange 'find the last column in the active sheet's used range With ActiveSheet.UsedRange myLastColumn = .Columns(.Columns.Count).Column End With 'display the number of the last column found by the macro MsgBox myLastColumn End Sub
Effects of Executing Macro Example to Find the Last Column in the Used Range
The following image illustrates the effects of using the macro example. As expected, Excel returns the number (6) of the last row in the active sheet’s used range. Excel considers formatting (including conditional formatting) when keeping track of a worksheet’s used range.
#17: Find the Last Column by Searching
VBA Code to Find the Last Column by Searching
To find the last column by searching with VBA, use a macro with the following statement structure:
If Application.CountA(Range) = 0 Then LastColumn = 0 Else LastColumn = Range.Find(What:="*", LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious).Column End If
Process to Find the Last Column by Searching
To find the last column by searching with VBA, follow these steps:
- Identify the cell range whose last column you want to find (Range).
- Test if Range is empty (If Application.CountA(Range) = 0).
- If Range is empty (Then), handle this situation by, for example, assigning the value of 0 to the variable that will hold the number of the last column (LastColumn = 0).
- If Range isn’t empty (Else), search for the last cell in Range containing any character sequence (Range.Find(What:=”*”, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious)).
- Obtain the column number of that last cell containing any character sequence (Column).
- Assign the number of the last column to the appropriate variable (LastColumn = …).
VBA Statement Explanation
Lines #1, #3 and #5: If Application.CountA(Range) = 0 Then | Else | End If
Item: If … Then | Else | End If
The If… Then… Else statement conditionally executes a group of statements (line #2 or line #4), depending on the value of an expression (Application.CountA(Range) = 0).
Item: Application.CountA(Range) = 0
Condition of the If… Then… Else statement, which evaluates to True or False as follows:
- True if all cells in Range are empty. For these purposes:
- Range is a Range object representing the cell range whose last column you want to find. You can usually work with, among others, the Worksheet.Range or Worksheet.Cells properties to refer to this Range object.
- The WorksheetFunction.CountA method (Application.CountA(Range)) counts the number of cells within Range that are not empty.
- False if at least 1 cell in Range isn’t empty.
In other words, this condition tests whether Range is empty (Application.CountA(Range) = 0) or not.
Line #2: LastColumn = 0
Statement that is executed if the condition tested by the If… Then… Else statement (Application.CountA(Range) = 0) returns True.
LastColumn is a variable of the Long data type to which you assign the number of the last column found by the macro.
If Range is empty (Application.CountA(Range) = 0), use the assignment operator (=) to assign an appropriate value (LastColumn = 0 assigns the value of 0) to LastColumn. In other words, use this statement (or set of statements) to handle the cases where Range is empty.
Line #4: LastColumn = Range.Find(What:=”*”, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious).Column
Item: LastColumn
Variable of the Long data type to which you assign the number of the last column found by the macro (Range.Find(What:=”*”, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious).Column).
Item: =
The assignment operator (=) assigns the number of the last column found by the macro (Range.Find(What:=”*”, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious).Column) to LastColumn.
Item: Range
Range object representing the cell range whose last column you want to find.
You can usually work with, among others, the following properties to refer to this Range object:
- Worksheet.Range.
- Worksheet.Cells.
Item: Find(What:=”*”, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious)
The Range.Find method:
- Finds specific information in a cell range (Range); and
- Returns a Range object representing the first cell where the information is found.
When identifying the last column by searching, set the parameters of the Range.Find method as follows:
- What, which represents the data to search for, to “*” (What:=”*”). The asterisk (*) acts as a wildcard and results in Range.Find searching for any character sequence.
- LookIn, which specifies the type of data to search, to the xlFormulas built-in constant (or -4123) which refers to formulas (LookIn:=xlFormulas).
- LookAt, which specifies whether the match is made against the whole or any part of the search text, to the xlPart built-in constant (or 2) which matches against any part of the search text (LookAt:=xlPart).
- SearchOrder, which specifies the order in which to search the cell range, to the xlByColumns built-in constant (or 2) which searches across a column and then moves to the next column (SearchOrder:=xlByColumns).
- SearchDirection, which specifies the search direction, to the xlPrevious built-in constant (or 2) which searches for the previous match in the cell range (SearchDirection:=xlPrevious).
The settings for LookIn, LookAt, SearchOrder and MatchByte (used only if you have selected or installed double-byte language support) are saved every time you work with the Range.Find method. Therefore, if you don’t specify values for these parameters when searching for the last column, the saved values are used. Setting these parameters changes the settings in the Find dialog box and, vice-versa, changing the settings in the Find dialog box changes these parameters. Therefore, to reduce the risk of errors, set these arguments explicitly when searching for the last column.
Item: Column
The Range.Column property returns the number of the first column of the first area in the source range.
When identifying the last column by searching, the source range is the Range object returned by the Range.Find method (Range.Find(What:=”*”, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious)). This Range object represents the last cell (furthest to the right) in the cell range you work with (Range). Therefore, the Range.Column property returns the number of that last column.
Macro Example to Find the Last Column by Searching
The following macro (User-Defined Function) example finds the last column in the cell range passed as argument (myRange) by searching. If myRange is empty (Application.CountA(myRange) = 0), the User-Defined Function returns the number 0 (lastColumnRangeFind = 0).
Function lastColumnRangeFind(myRange As Range) As Long 'Source: https://powerspreadsheets.com/ 'finds the last column in myRange by searching for the last cell with any character sequence. If myRange is empty, assigns the 0 as the number of the last row 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'test if myRange is empty If Application.CountA(myRange) = 0 Then 'if myRange is empty, assign 0 to lastColumnRangeFind lastColumnRangeFind = 0 Else 'if myRange isn't empty, find the last cell with any character sequence (What:="*") by: '(1) Searching for the previous match (SearchDirection:=xlPrevious); '(2) Across columns (SearchOrder:=xlByColumns) lastColumnRangeFind = myRange.Find(What:="*", LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious).Column End If End Function
Effects of Executing Macro Example to Find the Last Column by Searching
The following image illustrates the effects of using the macro (User-Defined Function) example. As expected, Excel returns the number (5) of the last column in the cell range passed as argument (A5 to F25) by searching.
#18: Find the Last Column in the Current Region
VBA Code to Find the Last Column in the Current Region
To find the last column in the current region with VBA, use a macro with the following statement structure:
With Cell.CurrentRegion LastColumn = .Columns(.Columns.Count).Column End With
Process to Find the Last Column in the Current Region
To find the last column in the current region with VBA, follow these steps:
- Identify the current region whose last column you want to find (With Cell.CurrentRegion | End With).
- Identify the last column in the current region (.Columns(.Columns.Count)).
- Obtain the number of that last column in the current region (Column).
- Assign the number of the last column to a variable (LastColumn = …).
VBA Statement Explanation
Lines #1 and #3: With Cell.CurrentRegion | End With
Item: With … | End With
The With… End With statement executes a series of statements (line #2) on a single object (Cell.CurrentRegion).
Item: Cell
Range object representing a cell in the current region whose last column you want to find.
You can usually work with, among others, the following properties to refer to this Range object:
- Worksheet.Range.
- Worksheet.Cells.
Item: CurrentRegion
The Range.CurrentRegion property returns a Range object representing the current region. The current region is a cell range bounded by a combination of:
- Blank rows; and
- Blank columns.
The Range.CurrentRegion property (basically) expands from Cell to include the entire current region.
Line #2: LastColumn = .Columns(.Columns.Count).Column
Item: LastColumn
Variable of the Long data type to which you assign the number of the last column found by the macro (.Columns(.Columns.Count).Column).
Item: =
The assignment operator (=) assigns the number of the last column found by the macro (.Columns(.Columns.Count).Column) to LastColumn.
Item: .Columns(.Columns.Count)
The Range.Columns property returns a Range object representing the columns in the source range (Cell.CurrentRegion).
The Range.Count property returns the number of objects in a collection. When searching for the last column in the current region, the Range.Count property returns the number of columns in the source range (.Columns).
Therefore:
- .Columns returns a Range object representing all columns in Cell.CurrentRegion.
- .Columns.Count returns the number of columns in Cell.CurrentRegion.
.Columns.Count is used as an index number of the Range.Columns property (.Columns(.Columns.Count)). In other words, .Columns(.Columns.Count) refers to the column (within Cell.CurrentRegion) whose index number is equal to the number of columns in Cell.CurrentRegion (.Columns.Count). This is the last column in Cell.CurrentRegion.
Item: Column
The Range.Column property returns the number of the first column of the first area in the source range.
When searching for the last column in the current region, the source range is that last column of that current region (.Columns(.Columns.Count)). Therefore, the Range.Column property returns the number of that last column.
Macro Example to Find the Last Column in the Current Region
The following macro example finds the last column in the current region (myCell.CurrentRegion) containing cell A6 in the active worksheet (ActiveSheet.Range(“A6”)).
Sub lastColumnInCurrentRegion() 'Source: https://powerspreadsheets.com/ 'finds the last column in the current region containing cell A6 in the active worksheet 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'declare object variable to represent source range Dim myCell As Range 'declare variable to hold value of last column Dim myLastColumn As Long 'identify source range Set myCell = ActiveSheet.Range("A6") 'identify the current region containing myCell With myCell.CurrentRegion 'find the last column in the current region containing myCell myLastColumn = .Columns(.Columns.Count).Column End With 'display the number of the last column found by the macro MsgBox myLastColumn End Sub
Effects of Executing Macro Example to Find the Last Column in the Current Region
The following image illustrates the effects of using the macro example. As expected, Excel returns the number (5) of the last column in the current region containing cell A6.
#19: Find the Last Column in an Excel Table
VBA Code to Find the Last Column in an Excel Table
To find the last column in an Excel Table with VBA, use a macro with the following statement structure:
With ExcelTable.Range LastColumn = .Columns(.Columns.Count).Column End With
Process to Find the Last Column in an Excel Table
To find the last column in an Excel Table with VBA, follow these steps:
- Identify the Excel Table whose last column you want to find (With ExcelTable.Range | End With).
- Identify the last column in the Excel Table (.Columns(.Columns.Count)).
- Obtain the number of that last column in the Excel Table (Column).
- Assign the number of the last column to a variable (LastColumn = …).
VBA Statement Explanation
Lines #1 and #3: With ExcelTable.Range | End With
Item: With … | End With
The With… End With statement executes a series of statements (line #2) on a single object (ExcelTable.Range).
Item: ExcelTable
ListObject object representing the Excel Table whose last column you want to find.
You can usually work with the Worksheet.ListObjects property to refer to this ListObject object.
Item: Range
The ListObject.Range property returns a Range object representing the cell range to which ExcelTable applies.
Line #2: LastColumn = .Columns(.Columns.Count).Column
Item: LastColumn
Variable of the Long data type to which you assign the number of the last column found by the macro (.Columns(.Columns.Count).Column).
Item: =
The assignment operator (=) assigns the number of the last column found by the macro (.Columns(.Columns.Count).Column) to LastColumn.
Item: .Columns(.Columns.Count)
The Range.Columns property returns a Range object representing the columns in the source range (ExcelTable.Range).
The Range.Count property returns the number of objects in a collection. When searching for the last column in an Excel Table, the Range.Count property returns the number of columns in the source range (.Columns).
Therefore:
- .Columns returns a Range object representing all columns in ExcelTable.Range.
- .Columns.Count returns the number of columns in ExcelTable.Range.
.Columns.Count is used as an index number of the Range.Columns property (.Columns(.Columns.Count)). In other words, .Columns(.Columns.Count) refers to the column (within ExcelTable.Range) whose index number is equal to the number of columns in ExcelTable.Range (.Columns.Count). This is the last column in ExcelTable.Range.
Item: Column
The Range.Column property returns the number of the first column of the first area in the source range.
When searching for the last column in an Excel Table, the source range is that last column of the Excel Table (.Columns(.Columns.Count)). Therefore, the Range.Column property returns the number of that last column.
Macro Example to Find the Last Column in an Excel Table
The following macro (User-Defined Function) example finds the last column in an Excel Table (ListObjects(myTableIndex).Range):
- Located in the same worksheet as that where the User-Defined Function is used in a worksheet formula (Application.Caller.Parent); and
- Whose index number is passed as argument of the User-Defined Function (myTableIndex).
Function lastColumnInTable(myTableIndex As Long) As Long 'Source: https://powerspreadsheets.com/ 'finds the last column in an Excel Table (in the same worksheet as that where the User-Defined Function is used and whose index number is myTableIndex) 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'identify the cell range containing the Excel Table located in the same worksheet as that where the User-Defined Function is used and whose index number is myTableIndex With Application.Caller.Parent.ListObjects(myTableIndex).Range 'find the last column in the Excel Table lastColumnInTable = .Columns(.Columns.Count).Column End With End Function
Effects of Executing Macro Example to Find the Last Column in an Excel Table
The following image illustrates the effects of using the macro (User-Defined Function) example. As expected, Excel returns the number (5) of the last column in the Excel Table whose index number (1) is passed as argument.
#20: Find the Last Column in a Named Cell Range
VBA Code to Find the Last Column in a Named Cell Range
To find the last column in a named cell range with VBA, use a macro with the following statement structure:
With NamedRange LastColumn = .Columns(.Columns.Count).Column End With
Process to Find the Last Column in a Named Cell Range
To find the last column in a named cell range with VBA, follow these steps:
- Identify the named cell range whose last column you want to find (With NamedRange | End With).
- Identify the last column in the named cell range (.Columns(.Columns.Count)).
- Obtain the number of that last column in the named cell range (Column).
- Assign the number of the last column to a variable (LastColumn = …).
VBA Statement Explanation
Lines #1 and #3: With NamedRange | End With
The With… End With statement executes a series of statements (line #2) on a single object (NamedRange).
NamedRange is a Range object representing the named cell range whose last column you want to find. You can usually work with the Worksheet.Range property to refer to this Range object.
Line #2: LastColumn = .Columns(.Columns.Count).Column
Item: LastColumn
Variable of the Long data type to which you assign the number of the last column found by the macro (.Columns(.Columns.Count).Column).
Item: =
The assignment operator (=) assigns the number of the last column found by the macro (.Columns(.Columns.Count).Column) to LastColumn.
Item: .Columns(.Columns.Count)
The Range.Columns property returns a Range object representing the columns in the source range (NamedRange).
The Range.Count property returns the number of objects in a collection. When searching for the last column in a named cell range, the Range.Count property returns the number of columns in the source range (.Columns).
Therefore:
- .Columns returns a Range object representing all columns in NamedRange.
- .Columns.Count returns the number of columns in NamedRange.
.Columns.Count is used as an index number of the Range.Columns property (.Columns(.Columns.Count)). In other words, .Columns(.Columns.Count) refers to the column (within NamedRange) whose index number is equal to the number of columns in NamedRange (.Columns.Count). This is the last column in NamedRange.
Item: Column
The Range.Column property returns the number of the first column of the first area in the source range.
When searching for the last column in a named cell range, the source range is the last column of that named cell range (.Columns(.Columns.Count)). Therefore, the Range.Column property returns the number of that last column.
Macro Example to Find the Last Column in a Named Cell Range
The following macro (User-Defined Function) example finds the last column in a named cell range (Range(myRangeName)):
- Located in the same worksheet as that where the User-Defined Function is used in a worksheet formula (Application.Caller.Parent); and
- Whose name is passed as argument of the User-Defined Function (myRangeName).
Function lastColumnInNamedRange(myRangeName As String) As Long 'Source: https://powerspreadsheets.com/ 'finds the last column in a named cell range (in the same worksheet as that where the User-Defined Function is used and whose name is myRangeName) 'For further information: https://powerspreadsheets.com/vba-last-row-column/ 'identify the named cell range whose name is myRangeName With Application.Caller.Parent.Range(myRangeName) 'find the last column in myRangeName lastColumnInNamedRange = .Columns(.Columns.Count).Column End With End Function
Effects of Executing Macro Example to Find the Last Column in a Named Cell Range
The following image illustrates the effects of using the macro (User-Defined Function) example. As expected, Excel returns the number (5) of the last column in the named cell range passed as argument (namedRangeColumn).
Workbook Example Used in this VBA Last Row and Last Column Tutorial
You can get immediate free access to the example workbook that accompanies this VBA Last and Last Column Tutorial by subscribing to the Power Spreadsheets Newsletter.
Today I am going to take on one of the most frequent question people ask about Excel VBA – how to the the last row, column or cell of a spreadsheet using VBA. The Worksheet range used by Excel is not often the same as the Excel last row and column with values. Therefore I will be careful to explain the differences and nuisances in our quest to find the last row, column or cell in and Excel spreadsheet.
In this post I am covering the following types of Excel VBA Ranges:
See below sections for details.
The Last Row may as be interpreted as:
- Last Row in a Column
- Last Row with Data in Worksheet
- Last Row in Worksheet UsedRange
Last Row in a Column
To get the Last Row with data in a Column we need to use the End property of an Excel VBA Range.
Dim lastRow as Range 'Get Last Row with Data in Column Debug.Print Range("A1").End(xlDown).Row 'Result: 5 Set lastRow = Range("A1").End(xlDown).EntireRow 'Get Last Cell with Data in Row Dim lastRow as Range Set lastRow = Range("A1").End(xlDown)
Last Row with Data in Worksheet
To get the Last Row with data in a Worksheet we need to use the SpecialCells or Find properties of an Excel VBA Range.
Dim lastRow as Range, ws As Worksheet Set ws = ActiveSheet 'Get Last Row with Data in Worksheet using SpecialCells Debug.Print ws.Cells.SpecialCells(xlCellTypeLastCell).Row Set lastRow = ws.Cells.SpecialCells(xlCellTypeLastCell).EntireRow 'Get Last Row with Data in Worksheet using Find Debug.Print Debug.Print ws.Cells.Find(What:="*", _ After:=ws.Cells(1), _ Lookat:=xlPart, _ LookIn:=xlFormulas, _ SearchOrder:=xlByRows, _ SearchDirection:=xlPrevious, _ MatchCase:=False).Row Set lastRow = Debug.Print ws.Cells.Find(What:="*", _ After:=ws.Cells(1), _ Lookat:=xlPart, _ LookIn:=xlFormulas, _ SearchOrder:=xlByRows, _ SearchDirection:=xlPrevious, _ MatchCase:=False).EntireRow
Last Row in Worksheet UsedRange
To get the Last Row in the Worksheet UsedRange we need to use the UsedRange property of an VBA Worksheet.
'Get Last Row in Worksheet UsedRange Dim lastRow as Range, ws As Worksheet Set ws = ActiveSheet Debug.Print ws.UsedRange.Rows(ws.UsedRange.Rows.Count).Row Set lastRow = ws.UsedRange.Rows(ws.UsedRange.Rows.Count).EntireRow
The UsedRange represents a Range used by an Excel Worksheet. The Used Range starts at the first used cell and ends with the most right, down cell that is used by Excel. This last cell does not need to have any values or formulas as long as it was edited or formatted in any point in time
VBA Last Column
The Last Column may as be interpreted as:
- Last Column with Data in a Row
- Last Column with Data in Worksheet
- Last Column in Worksheet UsedRange
Last Column with Data in a Row
To get the Last Column with data in a Worksheet we need to use the SpecialCells or Find properties of an Excel VBA Range.
Dim lastColumn as Range, ws As Worksheet Set ws = ActiveSheet 'Get Last Column with Data in Worksheet using SpecialCells Debug.Print ws.Cells.SpecialCells(xlCellTypeLastCell).Column Set lastColumn = ws.Cells.SpecialCells(xlCellTypeLastCell).EntireColumn 'Get Last Column with Data in Worksheet using Find Debug.Print Debug.Print ws.Cells.Find(What:="*", _ After:=ws.Cells(1), _ Lookat:=xlPart, _ LookIn:=xlFormulas, _ SearchOrder:=xlByRows, _ SearchDirection:=xlPrevious, _ MatchCase:=False).Column Set lastColumn = Debug.Print ws.Cells.Find(What:="*", _ After:=ws.Cells(1), _ Lookat:=xlPart, _ LookIn:=xlFormulas, _ SearchOrder:=xlByRows, _ SearchDirection:=xlPrevious, _ MatchCase:=False).EntireColumn
Last Column in Worksheet UsedRange
To get the Last Column in the Worksheet UsedRange we need to use the UsedRange property of an VBA Worksheet.
'Get Last Column in Worksheet UsedRange Dim lastColumn as Range, ws As Worksheet Set ws = ActiveSheet Debug.Print ws.UsedRange.Columns(ws.UsedRange.Columns.Count).Column Set lastColumn = ws.UsedRange.Columns(ws.UsedRange.Columns.Count).EntireColumn
VBA Last Cell
The Last Cell may as be interpreted as:
- Last Cell in a series of data
- Last Cell with Data in Worksheet
- Last Cell in Worksheet UsedRange
Last Cell in a series of data
To get the Last Cell in a series of data (table with non-blank values) we need to use the End property of an Excel VBA Range.
Dim lastCell as Range 'Get Last Cell in a series of data Dim lastCell as Range Set lastCell = Range("A1").End(xlRight).End(xlDown) Debug.Print "Row: " & lastCell.row & ", Column: " & lastCell.column
Last Cells with Data in Worksheet
To get the Last Cell with data in a Worksheet we need to use the SpecialCells or Find properties of an Excel VBA Range.
Dim lastCell as Range, ws As Worksheet Set ws = ActiveSheet 'Get Last Cell with Data in Worksheet using SpecialCells Set lastCell = ws.Cells.SpecialCells(xlCellTypeLastCell) Debug.Print "Row: " & lastCell.row & ", Column: " & lastCell.column 'Get Last Cell with Data in Worksheet using Find Set lastColumn = Debug.Print ws.Cells.Find(What:="*", _ After:=ws.Cells(1), _ Lookat:=xlPart, _ LookIn:=xlFormulas, _ SearchOrder:=xlByRows, _ SearchDirection:=xlPrevious, _ MatchCase:=False) Debug.Print "Row: " & lastCell.row & ", Column: " & lastCell.column
Last Cell in Worksheet UsedRange
To get the Last Cell in the Worksheet UsedRange we need to use the UsedRange property of an VBA Worksheet.
'Get Last Cell in Worksheet UsedRange Dim lastCell as Range, ws As Worksheet Set ws = ActiveSheet Set lastCell = ws.UsedRange.Cells(ws.UsedRange.Rows.Count,ws.UsedRange.Columns.Count) Debug.Print "Row: " & lastCell.row & ", Column: " & lastCell.column
VBA UsedRange
The VBA UsedRange represents the area reserved and saved by Excel as the currently used Range on and Excel Worksheet. The UsedRange constantly expands the moment you modify in any way a cell outside of the previously Used Range of your Worksheet.
The UsedRange is not reduced if you Clear the Contents of Range. The only way to reduce a UsedRange is to delete the unused rows and columns.
How to check the UsedRange
The easiest way to check the currently UsedRange in an Excel Worksheet is to select a cell (best A1) and hitting the following key combination: CTRL+SHIFT+END. The highlighted Range starts at the cell you selected and ends with the last cell in the current UsedRange.
Check UsedRange in VBA
Use the code below to check the area of the UsedRange in VBA:
Dim lastCell As Range, firstCell As Range, ws As Worksheet Set ws = ActiveSheet Set lastCell = ws.UsedRange.Cells(ws.UsedRange.Rows.Count, ws.UsedRange.Columns.Count) Set firstCell = ws.UsedRange.Cells(1, 1) Debug.Print "First Cell in UsedRange. Row: " & firstCell.Row & ", Column: " & firstCell.Column Debug.Print "Last Cell in UsedRange. Row: " & lastCell.Row & ", Column: " & lastCell.Column
For the screen above the result will be:
First Cell in UsedRange; Row: 2, Column: 2 Last Cell in UsedRange; Row: 5, Column: 6
First UsedCell in UsedRange
The below will return get the first cell of the VBA UsedRange and print its row and column:
Dim firstCell as Range Set firstCell = ws.UsedRange.Cells(1, 1) Debug.Print "First Cell in UsedRange. Row: " & firstCell.Row & ", Column: " & firstCell.Column
Last UsedCell in UsedRange
The below will return get the first cell of the VBA UsedRange and print its row and column:
Dim lastCell as Range Set lastCell = ws.UsedRange.Cells(ws.UsedRange.Rows.Count, ws.UsedRange.Columns.Count) Debug.Print "Last Cell in UsedRange; Row: " & lastCell.Row & ", Column: " & lastCell.Column
We use Range.SpecialCells() method in the below VBA Code to find and return details of last used row, column, and cell in a worksheet.
Sample Data:
Sample Data
Syntax:
expression.SpecialCells (Type, Value)
Eg: To return the last used cell address in an activesheet. ActiveSheet.Range(“A1”).SpecialCells(xlCellTypeLastCell).Address
VBA Code:
Declaring Variables:
Variable | Data Type | Comments |
---|---|---|
LastRow | Long | Find and store last used row |
LastCol | Long | store last used column |
LastCell | String | store last used cell address |
'Variable Declaration Dim LastRow As Long, LastCol As Long, LastCell As String
Use SpecialCells function to find last used row/column/cell
'Find Last Used Row LastRow = ActiveSheet.Range("A1").SpecialCells(xlCellTypeLastCell).Row 'Find Last Used Column LastCol = ActiveSheet.Range("A1").SpecialCells(xlCellTypeLastCell).Column 'Find Last Used Cell LastCell = ActiveSheet.Range("A1").SpecialCells(xlCellTypeLastCell).Address
Concatenate all three variables (LastRow/LastCol/LastCell), add a new line between variables use Chr(10). Show the final output in an Excel Message box.
'Display the last used row/column/cell MsgBox "Last Used Row : " & LastRow & Chr(10) & "Last Used Column : " & LastCol & Chr(10) & "Last Used Cell : " & LastCell
Implementation:
Follow the below steps to find the Last Used Row and Last Used Column in Excel VBA
Step 1: Add a shape (Find Last Row/Column/Cell) on your worksheet.
Step 2: Right-click on “Find Last Row/Column/Cell” and “Assign Macro..”
Step 3: Select “findLastUsedCell”, you can see a list of macros if available in your workbook
Step 4: Save your excel file as “Excel Macro-Enabled Workbook” *.xlsm
Step 5: Click “Find Last Row/Column/Cell” to execute the VBA code. Code will popup below output for the above given example (Output).
Output:
Finding last used row and column is one of the basic and important task for any automation in excel using VBA. For compiling sheets, workbooks and arranging data automatically, you are required to find the limit of the data on sheets.
This article will explain every method of finding last row and column in excel in easiest ways.
1. Find Last Non-Blank Row in a Column using Range.End
Let’s see the code first. I’ll explain it letter.
Sub getLastUsedRow() Dim last_row As Integer last_row = Cells(Rows.Count, 1).End(xlUp).Row ‘This line gets the last row Debug.Print last_row End Sub
The the above sub finds the last row in column 1.
How it works?
It is just like going to last row in sheet and then pressing CTRL+UP shortcut.
Cells(Rows.Count, 1): This part selects cell in column A. Rows.Count gives 1048576, which is usually the last row in excel sheet.
Cells(1048576, 1)
.End(xlUp): End is an method of range class which is used to navigate in sheets to ends. xlUp is the variable that tells the direction. Together this command selects the last row with data.
Cells(Rows.Count, 1).End(xlUp)
.Row : row returns the row number of selected cell. Hence we get the row number of last cell with data in column A. in out example it is 8.
See how easy it is to find last rows with data. This method will select last row in data irrespective of blank cells before it. You can see that in image that only cell A8 has data. All preceding cells are blank except A4.
Select the last cell with data in a column
If you want to select the last cell in A column then just remove “.row” from end and write .select.
Sub getLastUsedRow() Cells(Rows.Count, 1).End(xlUp).Select ‘This line selects the last cell in a column End Sub
The “.Select” command selects the active cell.
Get last cell’s address column
If you want to get last cell’s address in A column then just remove “.row” from end and write .address.
Sub getLastUsedRow() add=Cells(Rows.Count, 1).End(xlUp).address ‘This line selects the last cell in a column Debug.print add End Sub
The Range.Address function returns the activecell’s address.
Find Last Non-Blank Column in a Row
It is almost same as finding last non blank cell in a column. Here we are getting column number of last cell with data in row 4.
Sub getLastUsedCol() Dim last_col As Integer last_col = Cells(4,Columns.Count).End(xlToLeft).Column ‘This line gets the last column Debug.Print last_col End Sub
You can see in image that it is returning last non blank cell’s column number in row 4. Which is 4.
How it works?
Well, the mechanics is same as finding last cell with data in a column. We just have used keywords related to columns.
Select Data Set in Excel Using VBA
Now we know, how to get last row and last column of excel using VBA. Using that we can select a table or dataset easily. After selecting data set or table, we can do several operations on them, like copy-paste, formating, deleting etc.
Here we have data set. This data can expand downwards. Only the starting cell is fixed, which is B4. The last row and column is not fixed. We need to select the whole table dynamically using vba.
VBA code to select table with blank cells
Sub select_table() Dim last_row, last_col As Long 'Get last row last_row = Cells(Rows.Count, 2).End(xlUp).Row 'Get last column last_col = Cells(4, Columns.Count).End(xlToLeft).Column 'Select entire table Range(Cells(4, 2), Cells(last_row, last_col)).Select End Sub
When you run this, entire table will be selected in fraction of a second. You can add new rows and columns. It will always select the entire data.
Benefits of this method:
- It’s easy. We literally wrote only one line to get last row with data. This makes it easy.
- Fast. Less line of code, less time taken.
- Easy to understand.
- Works perfectly if you have clumsy data table with fixed starting point.
Cons of Range.End method:
- The starting point must be know.
- You can only get last non-blank cell in a known row or column. When your starting point is not fixed, it will be useless. Which is very less likely to happen.
2. Find Last Row Using Find() Function
Let’s see the code first.
Sub last_row() lastRow = ActiveSheet.Cells.Find("*", searchorder:=xlByRows, searchdirection:=xlPrevious).Row Debug.Print lastRow End Sub
As you can see that in image, that this code returns the last row accurately.
How it works?
Here we use find function to find any cell that contains any thing using wild card operator «*». Asterisk is used to find anything, text or number.
We set search order by rows (searchorder:=xlByRows). We also tell excel vba the direction of search as xlPrevious (searchdirection:=xlPrevious). It makes find function to search from end of the sheet, row wise. Once it find a cell that contains anything, it stops. We use the Range.Row method to fetch last row from active cell.
Benefits of Find function for getting last cell with data:
- You don’t need to know the starting point. It just gets you last row.
- It can be generic and can be used to find last cell with data in any sheet without any changes.
- Can be used to find any last instance of specific text or number on sheet.
Cons of Find() function:
- It is ugly. Too many arguments.
- It is slow.
- Can’t use to get last non blank column. Technically, you can. But it gets too slow.
3. Using SpecialCells Function To Get Last Row
The SpecialCells function with xlCellTypeLastCell argument returns the last used cell. Lets see the code first
Sub spl_last_row_() lastRow = ActiveSheet.Cells.SpecialCells(xlCellTypeLastCell).Row Debug.Print lastRow End Sub
If you run the above code, you will get row number of last used cell.
How it Works?
This is the vba equivalent of shortcut CTRL+End in excel. It selects the last used cell. If record the macro while pressing CTRL+End, you will get this code.
Sub Macro1() ' ' Macro1 Macro ' ' ActiveCell.SpecialCells(xlLastCell).Select End Sub
We just used it to get last used cell’s row number.
Note: As I said above, this method will return the last used cell not last cell with data. If you delete the data in last cell, above vba code will still return the same cells reference, since it was the “last used cell”. You need to save the document first to get last cell with data using this method.
Related Articles:
Delete sheets without confirmation prompts using VBA in Microsoft Excel
Add And Save New Workbook Using VBA In Microsoft Excel 2016
Display A Message On The Excel VBA Status Bar
Turn Off Warning Messages Using VBA In Microsoft Excel 2016
Popular Articles:
The VLOOKUP Function in Excel
COUNTIF in Excel 2016
How to Use SUMIF Function in Excel