Hvordan søger jeg ....
Hvordan søger jeg efter alle de tekster som indeholder LCase(strKeyword) og som har en værdi der er 2,3,4 og 5??StrSql = "SELECT * FROM table WHERE"
StrSql = StrSql & "(tekst LIKE '%" & LCase(strKeyword) & "%')"
StrSql = StrSql & " AND (ny LIKE '2')"
StrSql = StrSql & " OR (ny LIKE '3')"
StrSql = StrSql & " OR (ny LIKE '4')"
StrSql = StrSql & " OR (ny LIKE '5')"
