Hi Carmen and welcome to the forum,
This looks like a VBA problem to me. See the attached that has an Event code behind the sheet.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("y6")) Is Nothing Then
Dim LastRow As Double
Dim RowCtr As Double
LastRow = Cells(Rows.Count, "A").End(xlUp).Row
For RowCtr = 1 To LastRow
If Cells(RowCtr, "A") = Target Then GoTo Found
Next RowCtr
Found:
Range(Cells(RowCtr + 1, "A"), Cells(RowCtr + 7, "A")).Copy
Cells(Target.Row + 1, Target.Column).Select
ActiveSheet.Paste
End If
End Sub
Bookmarks