vbscript 获得最后一行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vbscript 获得最后一行相关的知识,希望对你有一定的参考价值。

'Get Last Row
'Purpose: Find the last row populated with data and return it as An Integer

Public Function GetLastRow(wsSheet As Worksheet) As Long

Dim lastRow As Range
' Select the Last Used Cell (Instead of something like 999999, this is a bit more efficient)
Set lastRow = wsSheet.UsedRange.SpecialCells(xlCellTypeLastCell)
GetLastRow = wsSheet.Cells.Find(What:="*", After:=lastRow, SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row

End Function

以上是关于vbscript 获得最后一行的主要内容,如果未能解决你的问题,请参考以下文章

vbscript 查找范围中的最后一行

使用以下vbscript在邮件正文中添加新行

Google Sheets API v4 - 如何获得最后一行的价值?

将 .csv 导入 MS Access。 “AtEndOfStream”没有读取最后一行

pandas使用groupby函数first函数last函数分别获得每个分组的第一行和最后一行数据(first/last row of each group in dataframe)

vbscript 判断首页第一行