I have a data table. filled with Memo data and text data.
I would like to have a form that you can modify this data and also have a text box that you could type and it will filter all records that does not consist that string of text.
So if i have 100 records every record that does not...
This is how i created my keyword search
Have data table.
Create form
Text Box
Button.
create query.
in criteria
Like "*" & [Forms]![Record Form]![SearchText] & "*"
you can create another form from this or a report.
hope this helps