xlR1C1

  • Thread starter Thread starter AA
  • Start date Start date
R stands for Rows, C stands for Colums, and you can only use R1C1 style in
the formulas.
In VBA, you can use Cells instead of R1C1 style like this.
Cells(Row index, Column Index)

So the code would be as follows.

a = ActiveSheet.Cells(1, 1).Value


--
Kind Regards
Colo
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Colo of 'The Road of The Cell Masters' :)

URL:http://www.interq.or.jp/sun/puremis/colo/CellMastersLink.htm
mailto:[email protected]

/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 

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