Column.

  • Thread starter Thread starter TJF
  • Start date Start date
T

TJF

Hello,

I need use something like:

new = range("A" + x & 2).value

when x = 2 then I need this result

new = range("B" & 2).value

Is this somehow possible?

Thanks Tom
 
Use the Cells object instead

new = Cells(2, 1 + x).Value
 

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

Back
Top