DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub TextBox1_Change()
Dim SV As Worksheet
Dim SUT As Integer
If TextBox1 = "" Then: TextBox2 = ""
Set SV = Sheets("VERİ")
For SUT = 1 To SV.Cells(65536, "A").End(3).Row
If SV.Cells(SUT, "A") = TextBox1 Then
TextBox2 = SV.Cells(SUT, "A").Offset(0, 1).Value
End If
Next
End Sub
Private Sub TextBox2_Change()
Dim SV As Worksheet
Dim SUT As Integer
If TextBox2 = "" Then: TextBox1 = ""
Set SV = Sheets("VERİ")
For SUT = 1 To SV.Cells(65536, "B").End(3).Row
If SV.Cells(SUT, "B") = TextBox2 Then
TextBox1 = SV.Cells(SUT, "B").Offset(0, -1).Value
End If
Next
End Sub