gpt4 book ai didi

vba - Excel 2007 宏获取选定的行

转载 作者:行者123 更新时间:2023-12-04 21:08:29 25 4
gpt4 key购买 nike

我想使用宏在 Excel 工作表中获取用户已经选择的行。我该怎么做?

我附上了一张图片。我选择了第 3 行。我想在宏中获取选定的行。如果用户选择多行,我想在宏中获取所有这些选定的行。

Selected row in excel sheet

最佳答案

Selection将获得当前选定的范围。

Sub test()

Dim rng As Range
Set rng = Selection

'Will return address of selected range
MsgBox rng.Address

'will return row num
Msgbox rng.Row

'will give start row
MsgBox "Start Row : " & rng.Row

'will give end row
MsgBox "End Row : " & rng.Row + rng.Rows.Count - 1

End Sub

关于vba - Excel 2007 宏获取选定的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21924990/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com