I'm trying to figure out VBA and Excel and I've ran into some problems. I'm trying to select a range, and depending on if another column(P) is empty, I'll choose either column N or M to select.
Basically I've tried something like this without success.
IF(P7="",Range("N7").Select , Range("M7").Select)
So in pseudo code:
IF P7 is empty DO N7.Select ELSE M7.Select
I Appreciate any help, since I can't find anything about this!
-P