DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, [M1]) Is Nothing Then Exit Sub
[A2:L500].ClearContents
ST = 2
For i = 2 To Sheets("DEPO").[I65536].End(3).Row
If Target.Value = Sheets("DEPO").Cells(i, "I") Then
Range("B" & ST & ":L" & ST) = Sheets("DEPO").Range("B" & i & ":L" & i).Value
ST = ST + 1
End If
Next i
End Sub