I have written VBA code to copy Non-Blank Text from cloumn 3 to column 2 which I have listed below. The code is not doing anything.
FinalRow = Cells(65536, 1).End(xlUp).Row
For I = FinalRow To 1 Step 1
If Cells(I, 3).Value <> "" Then
Cells(I, 3).Selection.Copy
Cells(I, 2).Selection.Paste
End If
Next I
End Sub
It would be appreciated if someone could assist
[/list][/list]
FinalRow = Cells(65536, 1).End(xlUp).Row
For I = FinalRow To 1 Step 1
If Cells(I, 3).Value <> "" Then
Cells(I, 3).Selection.Copy
Cells(I, 2).Selection.Paste
End If
Next I
End Sub
It would be appreciated if someone could assist
[/list][/list]