Hey mr excel
i'm atm working on this code:
I just cant get it to work any help will be great
i'm atm working on this code:
Code:
If Sheets("Counting").Range(i, "R").Value = Sheets("Overview 2014-4").Range("Q1").Value Then
Sheets("Counting").Range("S:W").Row.Copy Destination:=Sheets("Overview 2014-4").Cells(Rows.Count, "Q").End(xlUp).Offset(1, 0)
End If
- First part of the code, will seach my counting and see if any data in my R column is equal to my overview 2014-4 Q1 data.
- Next up if its a match, it will copy the data from (S to W) in that row and then past it in my overview 2014-4 the last row of
I just cant get it to work any help will be great