Code line:
Range("A1:C4").Resize(3, 2).Select
Result:
Explanation: this code line resizes Range("A1:C4") to 3 rows and 2 columns and selects this range.
Code line:
Range("A1:C4").Resize(, 1).SelectResult:
Explanation: this code line resizes Range("A1:C4") to 1 column (we omit any row specification) and selects this range..