I want to copy the value of a particular cell of a row and paste it to an another cell of next row. Here is what I have so far.
for i= 2 to 26160
    If (Cells(i, 3) >= 99) Then
        Cells(i, 3).Select
        Selection.copy
        Cells(i, 4).Select 'error
        Selection.Paste    'error    
    end if    
next i
But my code is not working getting error in line 4 and 5?
 
     
     
     
    