The action is already in the title and I know I'm close but got stuck:
[pre]
[/pre]
*the list is already sorted so it will end by the first blank cell
Thank you in advance!
[pre]
Code:
Dim wsS As Worksheet, wsU As Worksheet
Set wsS = Sheets("sheet1")
Set wsU = Sheets("non_confid")
Dim col1 As String, col2 As String, i As Long, j As Long
Set wsS = ActiveWindow.ActiveSheet
col1 = "A"
Set wsU = ActiveWindow.ActiveSheet
col2 = "E"
For i = 505 To 700
For j = 2 To 197
If Not IsEmpty(ActiveCell.Value) Then
wsS.Range(col1 & i).Copy
wsU.Range(col2 & j).PasteSpecial xlPasteValues
End If
Next i
*the list is already sorted so it will end by the first blank cell
Thank you in advance!