Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何使用宏在 Excel 工作表中找到包含数据的最后一行? 在 VBA 中查找最后使用的单元格时出错
如果我有一个电子表格并且包含数据的最大行号是 10,434,是否有一个函数可以为我提供行号 10,434?
谢谢
子最大行() Dim largerowNum As Long Dim col As Integer 对于 col = 1 到 Columns.Count lastrow = Application.WorksheetFunction.Max(Cells(65536, col).End(xlUp).Row, maximumrowNum) 下一栏 MsgBox "最大行数=" & maximumrowNum 结束子
(只要您的行数少于 65536 就可以使用)