السلام عليكم ورحمة الله
انسخ هذا الكود والصقه فى حد الصفحة
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address <> "$D$7" Then Exit Sub
Range("B11:C41").ClearContents
For R = 3 To Sheet1.Range("B" & Rows.Count).End(xlUp).Row
If Sheet1.Cells(R, "B") = Target Then
Range("B11:B41") = WorksheetFunction.Transpose(Sheet1.Range("D" & R & ":AD" & R))
Range("C11:C41") = WorksheetFunction.Transpose(Sheet1.Range("D2:AD2"))
End If
Next
For S = 11 To 41
If IsError(Cells(S, "B")) Or IsError(Cells(S, "C")) Then
Cells(S, "B").ClearContents
Cells(S, "C").ClearContents
End If
Next
End Sub