Does Microsoft Access have Full Text Search?
I know that MySQL and SQL Server have Full Text Search, but I am not too certain on Access.
If Access doesn\'t h
The sample code that @duffymo provides works very well. I use it with Microsoft Access 2003. But a couple of fixes are necessary.
The table needs to be defined as: 'This code requires a table called tblWordList with fields called Word (text 255), WordCount (number), FirstCopyID (number)
The other fix is tblWordCounts needed to be replaced with tblWordList, and of course the Call CreateWordList needed to be changed to the table and field that needed to be sent to tblWordList.
On a 5000 record table it ran so fast I thought that it didn't work when I clicked on Sub ScopeWordList() and pressed F5, but the module created a word list with over 700 distinct records (for my data table). Thanks @duffymo for some neat example code.