Dim TempWB As PoiWorkbook
TempWB.InitializeExisting("E:\", "Test.xlsx", "")
If TempWB.NumberOfSheets > 0 Then
Dim Sheet As PoiSheet = TempWB.GetSheet(0) ' Get the first sheet
Log("Sheet:" &Sheet.Name) ' Show sheet name
Log("Rows:" &SheetPhysicalRows(Sheet) ' get the number of physical rows - I believe this is the number you want
Dim Row As PoiRow = Sheet.GetRow(SheetPhysicalRows(Sheet) - 1)
Dim Cell As PoiCell = Row.GetCell(0)
Dim CellValue As String = Cell.ValueString ' this will give you the first column of the last row
End If