gpt4 book ai didi

excel - 如何使用键盘取消选择Excel行

转载 作者:行者123 更新时间:2023-12-03 02:45:40 24 4
gpt4 key购买 nike

当选择 Excel 行并按住 Ctrl 键并单击它时,该行不会被取消选择。有没有办法使用键盘取消选择特定行?

最佳答案

抱歉,这是不可能的。

我所能做的就是引导您访问Chip Pearson的网站,其中包含可以取消选择单元格/区域的宏

这里也提供了代码:

取消选择ActiveCell

此过程将从选择中删除事件单元格。

Sub UnSelectActiveCell()
Dim R As Range
Dim RR As Range
For Each R In Selection.Cells
If StrComp(R.Address, ActiveCell.Address, vbBinaryCompare) <> 0 Then
If RR Is Nothing Then
Set RR = R
Else
Set RR = Application.Union(RR, R)
End If
End If
Next R
If Not RR Is Nothing Then
RR.Select
End If
End Sub

取消选择当前区域

此过程将从选择中删除包含事件单元格的区域。

Sub UnSelectCurrentArea()
Dim Area As Range
Dim RR As Range

For Each Area In Selection.Areas
If Application.Intersect(Area, ActiveCell) Is Nothing Then
If RR Is Nothing Then
Set RR = Area
Else
Set RR = Application.Union(RR, Area)
End If
End If
Next Area
If Not RR Is Nothing Then
RR.Select
End If
End Sub

关于excel - 如何使用键盘取消选择Excel行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26978239/

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