Saturday 22 October 2016

excel - VBA test if cell is in a range

I want to test if a given cell is within a given range in Excel VBA. What is the best way to do this?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...