ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Finding if a cell is within a Range (https://www.excelbanter.com/excel-programming/281192-finding-if-cell-within-range.html)

[email protected]

Finding if a cell is within a Range
 
i have a range (A1:C10) set to a variable "R" and i have a
cell set to a variable "C" (First E.I. B5, Second E.I. D5)

i need to know if C is within R

i have tried
Set NewC = Application.Intersect(R, C)

First E.I. it works good, no probs
But on the second E.I. NewC = nothing

Currently I have an error handler working with the cell
that is out side the range but their has to be a better
way to do this any ideas?


John Green[_3_]

Finding if a cell is within a Range
 
You seem to have already worked out the key elements of the following approach:

If Intersect(R, C) Is Nothing Then
MsgBox "No intersect"
Else
MsgBox "Intersect"
End If

PS: What does E.I. signify?

--

John Green - Excel MVP
Sydney
Australia


" wrote in message ...
i have a range (A1:C10) set to a variable "R" and i have a
cell set to a variable "C" (First E.I. B5, Second E.I. D5)

i need to know if C is within R

i have tried
Set NewC = Application.Intersect(R, C)

First E.I. it works good, no probs
But on the second E.I. NewC = nothing

Currently I have an error handler working with the cell
that is out side the range but their has to be a better
way to do this any ideas?




steve

Finding if a cell is within a Range
 
thanks i was missing the is :)


-----Original Message-----
You seem to have already worked out the key elements of

the following approach:

If Intersect(R, C) Is Nothing Then
MsgBox "No intersect"
Else
MsgBox "Intersect"
End If

PS: What does E.I. signify?

--

John Green - Excel MVP
Sydney
Australia


"

wrote in message
...
i have a range (A1:C10) set to a variable "R" and i

have a
cell set to a variable "C" (First E.I. B5, Second E.I.

D5)

i need to know if C is within R

i have tried
Set NewC = Application.Intersect(R, C)

First E.I. it works good, no probs
But on the second E.I. NewC = nothing

Currently I have an error handler working with the cell
that is out side the range but their has to be a better
way to do this any ideas?



.



All times are GMT +1. The time now is 03:39 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com