Jan 4, 2008 #1 williekay Technical User Joined Jun 30, 2003 Messages 121 Location US How do you ask the following in VBA Is ActiveCell.Row between 5 and 10? Willie
Jan 4, 2008 #2 S SkipVought Programmer Joined Dec 4, 2001 Messages 47,492 Location US hi, Avoid Active anything as a reference in general. Code: if not intersect(activecell, rows("5:10")) is nothing then 'houston, we have a hit end if Skip, When a diminutive clarvoyant had disappeared from detention, headlines read... Small Medium at Large Upvote 0 Downvote
hi, Avoid Active anything as a reference in general. Code: if not intersect(activecell, rows("5:10")) is nothing then 'houston, we have a hit end if Skip, When a diminutive clarvoyant had disappeared from detention, headlines read... Small Medium at Large