Hello there,
I tried your code, but it does not seem to be working. 
This is the code I am presently using:
Dim i As Integer
For i = 5 To 297
Cells(i, 16).Select
If Cells(i, 16).Value = 0 Then
If Cells(i, 12).Value <> 0 Then
Cells(i, 12).Select
Selection.Copy
Cells(i, 16).Select
ActiveCell.PasteSpecial
End If
End If
Cells(i, 18).Select
If Cells(i, 18).Value = 0 Then
If Cells(i, 14).Value <> 0 Then
Cells(i, 14).Select
Selection.Copy
Cells(i, 18).Select
ActiveCell.PasteSpecial
End If
End If
Next i
I am also attaching the worksheet. I am copying values from columns L and N and pasting them in P and R. In P and R,. I need just the values and not the Vlookup function that I used in L and N.
Thanks/
Bookmarks