I need some help with a query to get data from a mdb file,
the code so far is working great but i need this last piece.



Data1.RecordSource = _
"SELECT Data_T.Projektnummer, Data_T.Klant, Data_T.Projektnaam, Data_T.Aard, Data_T.Status " & _
"FROM Data_T " & _
"WHERE Klant = 'Test'"
Data1.Refresh



With this code i can get every Klant with the name Test but I also need Klant with the name
TestA or Atest.


Thanx