我正在使用 C# 创建一个 Excel 加载项。
如何检查所选(或由代码中的范围表示的单元格)是否在特定范围内。例如如何检查单元格 $P$5 是否在 $A$1:$Z$10 范围内
最佳答案
使用 Application.Intersect
,像这样(在 VBA 中)
Sub TestIntersect()
Dim MyRange As Range
Dim TestRange As Range
Set TestRange = [$A$1:$Z$10]
Set MyRange = [P5]
If Not Application.Intersect(MyRange, TestRange) Is Nothing Then
Debug.Print "the ranges intersect"
End If
End Sub
关于c# - 检查所选单元格是否在特定范围内,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12767320/