使用索引查找值为最后一个单元格

时间:2014-12-01 10:00:49

标签: vb.net excel-vba excel-interop vba excel

我尝试在包含值的列中找到最后一个单元格。我知道我可以使用类似的东西:

Dim findme As Range = excel.Range("A1:A" & lastrow.row)

但我正在寻找一种不使用此列字符格式的方法。像这样的VBA格式

Dim rng as range
with myWorksheet
    LastRow = .Cells(.Rows.Count, 1).End(xlUp).Row
    rng = .Range(.Cells(1,1), .Cells(LastRow, 1))
end with

1 个答案:

答案 0 :(得分:1)

我创建了一个帮助类来解决这个问题:

Imports Excel = Microsoft.Office.Interop.Excel

Public Class FindLastCellByIndex
    Private Shared Function getStringRangeFormat(ByVal colNumber As Long, ByVal rowNumber As Long) As String
        If colNumber > 0 AndAlso colNumber < 27 Then
            Dim c As Char
            c = Convert.ToChar(colNumber + 64)
            Return (c & rowNumber & ":" & c).ToString
        Else
            Return ""
        End If
    End Function

    Public Shared Function getSearchRange(ByRef _sheet As Excel.Worksheet, ByVal Col As Long, ByVal startRow As Long) As Excel.Range
        Dim strColCharSpez As String = getStringRangeFormat(Col, startRow)
       'Build String
        Dim rng As Excel.Range = DirectCast(_sheet.Cells(_sheet.Rows.Count, startRow), Excel.Range)
        Dim t As Long
        t = rng.End(Excel.XlDirection.xlUp).Row

        Return _sheet.Range(strColCharSpez & t)

    End Function
End Class

这是使用它的方式:

Dim rng As Excel.Range = FindLastCellByIndex.getSearchRange(_sheet, 3, 3)

现在您获得范围:Range(Cells(3,3)Cells(LastRow, 3)作为对象。