Code:
Sub checkwood()
Dim i As Integer
Dim r2 As Integer
Dim lastrow1 As Long
Dim woodcoasters As Range
lastrow1 = Cells(Rows.Count, 1).End(xlUp).Row
For i = 2 To lastrow1
r2 = 2
If Cells(i, 3).Value = Cells(14, 3).Value Then
Range("A" & i).Copy Range("j" & r2)
r2 = 2 + 1
End If
Next i
End Sub
[code/]
trying to get values to paste into column J if the cells in column C for the criteria. All values are pasting into J2 and not moving down
??