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.
我正在尝试选择我的数据字段中最右下角的单元格。我有一个 20x20 的数据网格,需要找到它会向下查找的最后一列有数据的最后一列。我在第二行代码中使用活动单元格功能时遇到问题。
Sub Add Range("A2").End(xlToRight).Select Range("A2").End(xlDown).Select End Sub
Sub Add ActiveCell.SpecialCells(xlCellTypeLastCell).Select End Sub
如果要修复当前代码:
Sub Add Range("A2").End(xlToRight).End(xlDown).Select End Sub
但如果有任何空白单元格穿过或向下,它将失败(停止)。
有关更好的方法,请参阅餐饮主管链接的页面。