I'm using C# to create a Excel Add-In.
How can I check if selected(or cell represented by a range in code) is in specyfic range. For example how to check if cell $P$5 is in range $A$1:$Z$10
Use Application.Intersect, like this (in VBA)
Application.Intersect
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
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
7 months ago
viewed
133 times
active