I want to select the cell after the array address +1 to the right. (eg., array address is $B$2... I want to select C3). How?
Here is my code selecting the array address.
This one is an attempt to select the cell + 1 to the right. gives me error.
Here is my code selecting the array address.
VBA Code:
tcRprt.Range(tcArrayA(h + 2)).Select
This one is an attempt to select the cell + 1 to the right. gives me error.
VBA Code:
tcRprt.Range(tcArrayA(h + 2) + 1).Select