VBA - cell reference
Posted by Alan on May 30, 2001 8:30 AM
I need to obtain the value of a cell in a fixed row, but variable column? What I am looking to do is reference a value in row a (fixed), column j (variable) in a nested for next loop.
for i = 1 to number of rows
for j = 1 to number of columns
compare number in row a, column j (validity check)
perform caluclation
next j
next i