Can the column index in a cell address be made variable?

C

cyberdude

Hi,


To refer to a cell with a variable row number, we can just code it as,
for example,


Dim i As Interger
i=234
Range("A" & i).Select


To refer to a cell with a variable column index, it seems not that easy

because the column
index must be explicitly specified in a cell address. So, if I want to

go to the j th column on the 2nd row or j columns to the right of cell
AA3, is there a quick and easy way to do it? Thank you in advance.


David
 
B

Barb Reinhardt

You may be able to use R1C1 terminology, but you'll need to get someone else
to help from here.
 
D

Dave Peterson

dim myCell as range
set mycell = activesheet.range("aa3")
mycell.offset(x,y).select

x = number of rows (positive=down,negative=up,0=same row)
y = number of columns (positive=right,negative=left,0=same column)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top