Here is the edited text of a post I made to our company's programming forum:
I want to set up a method of doing select lists. Of marking particular records. This way the select list can be given a title of any sort. And a person would see ALL records OR records matching those that had been previously selected. Select Lists should be savable for future reference at any time.
I envision a two table system basically....generically connecting any table to the list. So each table is going to need a TableSerialNumber in addition to the RecordID. There thus should be a TableSerialNumber table with the info on each table, what it is for (connecting to a field TableSerialNumber table?). I have to begin mapping this out because there are LOTS of uses for select lists.
Select Lists should also be able to automatically select a group of records. For instance I want to tag Customers to call next month. I can tag them individually. Or I could tag all the ones I took orders from this month. Or I could tag all the ones in ohio. Or I could do all three. Using a SELECT in SQL (Select Claimants where State = "Ohio") would give me all of those. Then I could click a button to tag ALL of them immediately. etc etc...
Ok clearly this needs some thinking but the basic idea is in my head.