UnklDonald418 wrote:It isn't entirely clear what you want
Sadly, now that I've converted it to a split database and started dumping words in, it's far too large to be attached (4.4 mb now) or I would have done so at the start. I did upload the current version to my Mega account here, if that's OK:
https://mega.nz/file/RBFD0QJI#W4Xyn6mzP ... NyuDK4b-60
Basically, I have a Words table (the main/master one) which has a bunch of junction tables associated with it already using the listboxes (Words_Consonants, Words_Vowels, Words_Combo, and Words_Meta). Those allow me to mark attributes on each word. There are also some Boolean and other fields in the Words table.
The main form I use is Words, but the DolchWords form tested filtering by the Boolean field Dolch under Words. I would like to create a form that behaves similarly (limits to a subset of the Words records) but that is filtered by a *separate* table (such as Fry, for instance, or any other table I create). Said extra table, like Fry, has a set of words, all of which will match records in the Words table (not all have matches at this point, but it's really a matter of "show only the records in Words that match records in Fry" so that shouldn't be a problem), so that I can edit just that subset if I want.
Fry has a matching Boolean field already, so I *could* do the steps above (though I'm not sure how to fill the FryFreq field with the numbers from the corresponding field on the Fry table) but I might create a table called BasicEnglish, for instance, with the words from that list. I would like to not have to go through the step of creating a Boolean field for BasicEnglish and running the SQL from
here to update it on the Words table, before setting up a form like DolchWords that will filter based on that Boolean field.
I'd like to find a way to enter SQL into the Filter box under Form Properties that would filter a version of the Words form (which uses the Words table for the MainForm) based on a table like Dolch or Fry *without* using a Boolean field at all, just by comparing the Word field on the Words table with the Word field in the other table and displaying only those records which match so I can edit them. I hope that is a little clearer!
I'll read through the power filter stuff, it's a bit overwhelming at a first glance and I find it difficult to generalize instructions for a generic database to my situation, so it'll be a bit for me to wade through it.
