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)
Dim c As Range, Adr As String, sat As Long
If Intersect(Target, [H2]) Is Nothing Then Exit Sub
Range("H6:J" & Rows.Count).ClearContents
sat = 6
With Range("E:E")
Set c = .Find(Target, , xlValues, xlWhole)
If Not c Is Nothing Then
Adr = c.Address
Do
Range("C" & c.Row & ":E" & c.Row).Copy Cells(sat, "H")
sat = sat + 1
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address <> Adr
End If
End With
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Dim c As Range, Adr As String, sat As Long
If Intersect(Target, [[COLOR=red]L4[/COLOR]]) Is Nothing Then Exit Sub
Range("[COLOR=red]L7:N[/COLOR]" & Rows.Count).ClearContents
sat = [COLOR=red]7[/COLOR]
With Range("E:E")
Set c = .Find(Target, , xlValues, xlWhole)
If Not c Is Nothing Then
Adr = c.Address
Do
Range("C" & c.Row & ":E" & c.Row).Copy Cells(sat, "[COLOR=red]L[/COLOR]")
sat = sat + 1
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address <> Adr
End If
End With
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Dim c As Range, Adr As String, sat As Long
If Intersect(Target, [M2]) Is Nothing Then Exit Sub
Range("M5:P" & Rows.Count).ClearContents
sat = 5
With Range("E:E")
Set c = .Find(Target, , xlValues, xlWhole)
If Not c Is Nothing Then
Adr = c.Address
Do
Range("C" & c.Row & ":F" & c.Row).Copy Cells(sat, "M")
sat = sat + 1
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address <> Adr
End If
End With
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Dim c As Range, Adr As String, sat As Long
If Intersect(Target, [M2]) Is Nothing Then Exit Sub
Range("M5:P" & Rows.Count).ClearContents
sat = 5
With Range("E:E")
Set c = .Find("*" & Target & "*")
If Not c Is Nothing Then
Adr = c.Address
Do
Range("C" & c.Row & ":F" & c.Row).Copy Cells(sat, "M")
sat = sat + 1
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address <> Adr
End If
End With
End Sub