DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
	Altın Üyelik Hakkında Bilgi
Sub Makro1()
    
    Dim i As Integer, _
        x As String
    
    For i = 1 To Cells(Rows.Count, "A").End(3).Row
        If Len(x) = 0 Then
            x = Cells(i, "A")
        Else
            x = x & "," & Cells(i, "A")
        End If
    Next i
    
    With Range("B1:B10").Validation
        .Delete
        .Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
        xlBetween, Formula1:=x
    End With
    
End SubSub BenzersizVeriDogrulama()
Dim i, n As Integer, x As String
For i = 1 To Cells(Rows.Count, 1).End(3).Row
    n = Application.WorksheetFunction.CountIf(Range("A$1:A" & i), Cells(i, 1))
    If Cells(i, 1) <> "" And n = 1 Then
    x = x & "," & Cells(i, 1)
    End If
Next i
With Range("B1:B10").Validation
    .Delete
    .Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
    xlBetween, Formula1:=x
End With
End SubSağ olun, iyi çalışmalar.Verilen cevapların hepsi işimi gördü çok teşekkür ederim
With Range("B1:B10").ValidationWith Range("B1, D10, M20, K3:K12").Validation
