Doing a favour for a friend and I am stuck...there is usually something I can find online to help me but I have looked for several hours and come up with zip...
In the macro below I would like to copy and paste rows (columns A though H only) from one worksheet ("Tracker")to the same columns on another ("Carpenter"), not the entire row. What I have is great for copy/pasting the entire row...
Am I furnishing enough information? I would appreciate any help out there!
Sub UpdateCarpenter()
Set i = Sheets("Tracker")
Set e = Sheets("Carpenter")
Dim d
Dim j
d = 3
j = 4
Do Until IsEmpty(i.Range("B" & j))
If i.Range("B" & j) = "Carpenter" Then
d = d + 1
e.Rows(d).Value = i.Rows(j).Value
End If
j = j + 1
Loop
End Sub
In the macro below I would like to copy and paste rows (columns A though H only) from one worksheet ("Tracker")to the same columns on another ("Carpenter"), not the entire row. What I have is great for copy/pasting the entire row...
Am I furnishing enough information? I would appreciate any help out there!
Sub UpdateCarpenter()
Set i = Sheets("Tracker")
Set e = Sheets("Carpenter")
Dim d
Dim j
d = 3
j = 4
Do Until IsEmpty(i.Range("B" & j))
If i.Range("B" & j) = "Carpenter" Then
d = d + 1
e.Rows(d).Value = i.Rows(j).Value
End If
j = j + 1
Loop
End Sub