Hello Robert-
Is this a SQL database? If so, you will have to frame your search using the LIKE verb. For example a filter:
SQL(table.[Keywords] LIKE '%iliuta%' OR table.[keywords] LIKE '%robert%')
would find any row that has either iluta or robert. This would also find roberta, robertb, etc. so you may need to do a bit of formatting to get what you are looking for.
Regards,
Gordon