D Dan Rositer Mar 10, 2004 #1 How can I check to see if the ActiveCell is in a give Range? VBA solution... Dan
T Trevor Shuttleworth Mar 10, 2004 #2 Dan check the Help for Intersect For example (not tested): If Intersect(ActiveCell, Range("A1:C20") Is Nothing Then MsgBox "Not in Range" Else MsgBox "In Range" End If Regards Trevor
Dan check the Help for Intersect For example (not tested): If Intersect(ActiveCell, Range("A1:C20") Is Nothing Then MsgBox "Not in Range" Else MsgBox "In Range" End If Regards Trevor