I am trying to copy a various cells from a range and then paste then.
This code works fine.
Fairly easy except when some of the info is situated in a different row to that of the initial range which you are copying.
But if I want to copy at the same time say: E86:E92 excel won't let me paste it as it can't copy and paste multiple selections.
Does anyone know of a way around this??
This code works fine.
Code:
Worksheet.Range("A77:A82,L77:N82").Select
Selection.Copy
Fairly easy except when some of the info is situated in a different row to that of the initial range which you are copying.
But if I want to copy at the same time say: E86:E92 excel won't let me paste it as it can't copy and paste multiple selections.
Does anyone know of a way around this??