Hi,
I'd like to copy for exemple from line 3 to line 4 and next from line 5 to 6 etc...
The problem is that I don't know I many lines I'm going to have in each file (it'a for a macro).
How can I program it exept with the following code:
Range("E3".Select
Selection.Copy
Range("E4".Select
ActiveSheet.Paste
Range("E5".Select
Application.CutCopyMode = False
Selection.Copy
Range("E6".Select
ActiveSheet.Paste
Please can you help me?
I'd like to copy for exemple from line 3 to line 4 and next from line 5 to 6 etc...
The problem is that I don't know I many lines I'm going to have in each file (it'a for a macro).
How can I program it exept with the following code:
Range("E3".Select
Selection.Copy
Range("E4".Select
ActiveSheet.Paste
Range("E5".Select
Application.CutCopyMode = False
Selection.Copy
Range("E6".Select
ActiveSheet.Paste
Please can you help me?