Lıke Operatörü

1 2 3
23/03/2022, 19:28

berduş

C*e*l*o*y*c*e hocamın da belirttiği gibi dosya eklemeniz çözümü bulmayı kolaylaştırır
strSorgu = strSorgu & " AND personel.ad LIKE '" & TextBoxBox1.Text & "*'"
şeklinde dener misiniz?
23/03/2022, 22:08

H@K@N

Ekte dosya ekledim.


Ara butonunu textbox ve combobaxlara göre çalıştıramadım. Filtreleme yapmıyor maalesef.
24/03/2022, 00:58

berduş

(23/03/2022, 22:08)H@K@N yazdı: Ara butonunu
ara butonunuzda kod göremedim?
24/03/2022, 01:15

berduş

Private Sub btn_arama_Click()
Dim baglan As New Connection
Dim rs As New Recordset

baglan.Open "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" & ThisWorkbook.Path & "\master.accdb;"
strSorgu = "select * from [personel] WHERE personel.id > 0"

If Len(Trim(TextBox3.Value & vbNullString)) > 0 Then
strSorgu = strSorgu & " AND personel.ad='" & TextBox3.Text & "'"
Else
strSorgu = strSorgu & " AND personel.ad LIKE '" & TextBox3.Text & "%'"
End If
rs.Open strSorgu, baglan, adOpenKeyset, adLockPessimistic
ListBox1.ColumnCount = rs.Fields.Count
If rs.RecordCount <> 0 Then ListBox1.Column = rs.GetRows Else ListBox1.Clear
rs.Close
baglan.Close
End Sub
24/03/2022, 15:56

H@K@N

textBox a hakan ismini yazdığımda ismi hakan olanları getiriyor. Ama H,Ha,Hak yazdığımda hiçbir veri gelmiyor. Ad alanına birebir yazmak gerekiyor. Ne yaptıysam olmadı. Başaramadım.
24/03/2022, 16:40

berduş

Sadece başlangıcı mi uyacak?
Kod:
If Len(Trim(TextBox3.Value & vbNullString)) > 0 Then
strSorgu = strSorgu & " AND personel.ad='" & TextBox3.Text & "'"
Else
strSorgu = strSorgu & " AND personel.ad LIKE '" & TextBox3.Text & "%'"
End If
yerine
Kod:
If Len(Trim(TextBox3.Value & vbNullString)) > 0 Then strSorgu = strSorgu & " AND personel.ad LIKE '" & textBox3.Text & "%'"
yazarak dener misiniz
1 2 3