Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Excel VBA: Get Last Cell Containing Data within Selected Range

Tags:

excel

vba

How do I use Excel VBA to get the last cell that contains data within a specific range, such as in columns A and B Range("A:B")?

like image 272
sikas Avatar asked Dec 10 '22 03:12

sikas


2 Answers

using Find like below is useful as it

  • can find the last (or first) cell in a 2D range immediately
  • testing for Nothing identifies a blank range
  • will work on a range that may not be contiguous (ie a SpecialCells range)

change "YourSheet" to the name of the sheet you are searching

Sub Method2()
    Dim ws As Worksheet
    Dim rng1 As Range
    Set ws = Sheets("YourSheet")
    Set rng1 = ws.Columns("A:B").Find("*", ws.[a1], xlValues, , xlByRows, xlPrevious)
    If Not rng1 Is Nothing Then
        MsgBox "last cell is " & rng1.Address(0, 0)
    Else
        MsgBox ws.Name & " columns A:B are empty", vbCritical
    End If
End Sub
like image 187
brettdj Avatar answered May 29 '23 04:05

brettdj


You can try several ways:

Using xlUp

Dim WS As Worksheet
Dim LastCellA As Range, LastCellB As Range
Dim LastCellRowNumber As Long

Set WS = Worksheets("Sheet1")
With WS
    Set LastCellA = .Cells(.Rows.Count, "A").End(xlUp)
    Set LastCellB = .Cells(.Rows.Count, "B").End(xlUp)
    LastCellRowNumber = Application.WorksheetFunction.Max(LastCellA.Row, LastCellB.Row)
End With

Using SpecialCells

Dim WS As Worksheet
Dim LastCell As Range
Set LastCell = Range("A:B").SpecialCells(xlCellTypeLastCell)

The latter can sometimes be tricky and might not work as you wanted it to.

More tips

You can also have a look at Chip Pearson's page about this issue

like image 36
JMax Avatar answered May 29 '23 05:05

JMax