D
daniroy
I did forgot even the vert basics, so please excuse the next question
which is very easy or so I think. I have a sheet. If one criteria is
met, I copy the line, and paste it in another sheet, after the last
line already copied. Up to now my code is.
If Len(Range("b" & i)) = 79 Then
Range("A" & i, "D" & i).Select
Selection.Copy
Sheets("Exports").Select
Range("A1").Select
Selection.End(xlDown).Select
Selection.End(xlDown).Select
Selection.End(xlUp).Select
ActiveSheet.Paste
Range("A1").Select
Sheets("EasyScreen Datas").Select
A big part of that is useless, I realize, and moreover, I am only
crashing the previous line as I copy the new one on the same place.
After:
If Len(Range("b" & i)) = 79 Then
Range("A" & i, "D" & i).Select
Selection.Copy
Sheets("Exports").Select
Range("A1").Select
What should I do...
I know it is not a sophisticated question ...
which is very easy or so I think. I have a sheet. If one criteria is
met, I copy the line, and paste it in another sheet, after the last
line already copied. Up to now my code is.
If Len(Range("b" & i)) = 79 Then
Range("A" & i, "D" & i).Select
Selection.Copy
Sheets("Exports").Select
Range("A1").Select
Selection.End(xlDown).Select
Selection.End(xlDown).Select
Selection.End(xlUp).Select
ActiveSheet.Paste
Range("A1").Select
Sheets("EasyScreen Datas").Select
A big part of that is useless, I realize, and moreover, I am only
crashing the previous line as I copy the new one on the same place.
After:
If Len(Range("b" & i)) = 79 Then
Range("A" & i, "D" & i).Select
Selection.Copy
Sheets("Exports").Select
Range("A1").Select
What should I do...
I know it is not a sophisticated question ...