如何获取单元格区域的行列范围
活动工作中选中的单元格区域为B3:C7,接下使用多种方法获取选中区域的行列范围。
方法1:获取首单元格和末单元格
Sub demo1()
Dim FirstCel, LastCel
If Selection.Count > 1 Then
Set FirstCel = Selection.Cells(1)
Set LastCel = Selection.Cells(Selection.Count)
Debug.Print "首单元格:", FirstCel.Row, FirstCel.Column
Debug.Print "末单元格:", LastCel.Row, LastCel.Column
End If
End Sub
【代码解析】 第3行代码判断当前选中区域单元格个数,如果包含多个单元格则执行后续代码。 第
如何获取单元格区域的行列范围最先出现在Python成神之路。
共有 0 条评论