DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
korhan hocam tamam çalışıyor verileri sayfa2 den nasıl alırım
Private Sub TextBox1_Change()
With TextBox1
.Top = ActiveCell.Top: .Left = ActiveCell.Left: .Width = ActiveCell.Width: .Height = ActiveCell.Height
End With
If TextBox1 = "" Then
ListBox1.Clear: ListBox1.Height = 0: Exit Sub
End If
With ListBox1
.Visible = True: .Clear: ListBox1.Height = 0
.Top = Cells(ActiveCell.Row + 1, 1).Top: .Width = ActiveCell.Width
End With
For brn = 1 To 12
If Sheets("Sayfa2").Cells(brn, "A") Like "*" & TextBox1 & "*" Then
ListBox1.AddItem Sheets("Sayfa2").Cells(brn, "A")
End If
ListBox1.Height = 13 * (ListBox1.ListCount) + 8
Next
End Sub