Assume I have the value of 1 in cell A1, 2 in B1, 3 in C1, 4 in A2, 5 in B2 and 6 in C2.
This is my code:
Dim Rng As Range
Set Rng = Range("A1:C1")
If I type:
Debug.Print Rng(1)
I get a value of 3, as expected.
However, why is it when I type:
Debug.Print Rng(4)
I get...