Range Referencing in Excel

Vogel515

Senior member
Jun 17, 2005
249
0
0
Range("A1:L4")

How would you represent this using just the column index?

A1 = Range(1,1)
L4 = Range(4,12)

Range(1,1:4,12)