用VBA语句在EXCEL中选定由上向下的第一个空白单元格

2024-12-01 10:57:54
推荐回答(2个)
回答1:

以A 列为例子
set f=application.worksheetfunction
if cells(f.counta(range("a:a"))+1,1)="" then
msgbox("第一个空行是第" & f.counta(range("a:a"))+1 & "行")
else
msgbox("数据不连续,中间有空白行,请确认!")
endif

回答2:

range("a1").end(xldown).select