P
pcw
I have often seen the following ... Cells(1,1)
What does it mean? Is it referencing first row and column?
What does it mean? Is it referencing first row and column?
JE said:. . . Similarly,
Range("J10:K100").Cells(1, 1) = 1
would place 1 in the cell in the first row and first column of the range
J10:K100 of the ActiveSheet, or cell J10. . . .
Alan Beban said:Although the .Cells is superfluous and slows things down as contrasted with
Range("J10:K100")(1, 1) = 1