V Vogel515 Senior member Jun 17, 2005 249 0 0 May 30, 2008 #1 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)
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)
V Vogel515 Senior member Jun 17, 2005 249 0 0 May 30, 2008 #2 Range(Cells(1,1), Cells(12,10)).Value got it...