Still learning the VBA ropes and I know "select" s/b avoided whenever possible, so I'm posting this.
Assuming data is in Range("C136:E139") and I want to copy the data in D136:D139 I used the code Range(Selection,Selection.End(xlDown)).copy which was straight from the macro recorder...
Is there a more efficient way?
Only other way I came up with was: Range("C136").currentregion.offset(,1).resize(,1).copy
Thanks
James
Assuming data is in Range("C136:E139") and I want to copy the data in D136:D139 I used the code Range(Selection,Selection.End(xlDown)).copy which was straight from the macro recorder...
Is there a more efficient way?
Only other way I came up with was: Range("C136").currentregion.offset(,1).resize(,1).copy
Thanks
James