DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
[FONT="Trebuchet MS"]Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column <> 9 Then Exit Sub
Dim a, b, c, d, ad, bd
[COLOR="red"]a [/COLOR]= Array("Ahmet", "Mehmet", "Fatma", "İsmail")
[COLOR="red"]b [/COLOR]= Array("Veli", "Hakkı", "Tufam", "Nedim")
Select Case Target.Value
Case Is = "[COLOR="red"]a[/COLOR]"
Range("[COLOR="red"]A[/COLOR]" & Target.Row).Resize(, [COLOR="red"]4[/COLOR]) = [COLOR="red"]a[/COLOR]
Case Is = "[COLOR="red"]b[/COLOR]"
Range("[COLOR="red"]A[/COLOR]" & Target.Row).Resize(, [COLOR="red"]4[/COLOR]) = [COLOR="red"]b[/COLOR]
End Select
End Sub[/FONT]