2007 Table

D

dR

Excel 2007
How do you use structural reference to point to one cell: intersection
of certain column and certain row of a table (not #This Row)?
a. worksheet row
b. table row
 
A

AP

Excel 2007
How do you use structural reference to point to one cell: intersection
of certain column and certain row of a table (not #This Row)?
a. worksheet row
b. table row

Don't know what you mean bby "structural reference" and this may not
be what you're after, but to refering to a cell in your VBA code is
simple.

If for instance you wish to assign the value of cell B3 to a variable
called "cell_value", simply:

cell_value = Cells(3, 2).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

Top