I am trying to find a football team name in a list of results on Sheet 2017 - 2018 Brazil Serie A which is fine that works ok when found, I want the cells next to the name and the next 5 to copy and paste to another sheet AFC Bournemouth what I get is the copying AFC Bournemouth b16:f16 can someone tell me what I'm doing wrong please
Sub finddataTeamTimeGoals()
Application.ScreenUpdating = False
Dim findhometeam As String
Dim findawayteam As String
Dim finalrow As Integer
Dim i As Integer
Dim totalmatches As Long
Sheets("AFC Bournemouth").Range("a2:ab50").ClearContents
findhometeam = Sheets("2017-2018 Brazil Serie A").Range("i2").Value
finalrow = Sheets("2017-2018 Brazil Serie A").Cells(Rows.Count, 4).End(xlUp).Row
totalmatches = Sheets("2017-2018 Brazil Serie A").Cells(Rows.Count, 4).End(xlUp).Row
finalrow1 = Sheets("2017-2018 Brazil Serie A").Cells(Rows.Count, 31).End(xlUp).Row
For i = 2 To finalrow
Sheets("2017-2018 Brazil Serie A").Activate
If Sheets("2017-2018 Brazil Serie A").Cells(i, 1) = findhometeam Then
Range(Cells(i, 2), Cells(i, 6)).Copy
Sheets("AFC Bournemouth").Activate
Range("b12").End(xlUp).Offset(1, 0).PasteSpecial xlPasteFormulasAndNumberFormats
Sheets("2017-2018 Brazil Serie A").Activate
End If
Next i
End Sub