omniaccess
Technical User
My goal is to have a list with each item having a selection checkbox for the user to select which items in the list they want to act upon (delete, email, add to a group, etc.)
The list is created by joining several tables together to get the information I need. That part works fine. I get all of the appropriate records listed with all of their detail. But, when I join another table that simply has a yes/no field and the ClientID (linked on the clientID to the other joined tables), I get the message "This recordset is not updateable". The reason for having a separate selection table is because each person has this table located on their own machine so that each one can make their own selections to the list independent of each other.
I have tried to connect this additional selection table to the other tables in every combination, with every joining type I could - It yields the same answer. I have even used an event to fill the selection table with matching entries, but still no luck.
I have been able to connect this selection table to just one other table and it work fine. But when it is connected to either multiple joined tables or a query of multiple joined tables, I get the "not updateable" message again.
What I have done temporarily until I can get this figured out is the following:
I created a temporary table by using a Make Table query to match all of the fields of the multiple-joined tables. I have an Append Query run to fill the temporary table with the results of the query. Each record in this temp table has a Yes/No checkbox as a field. Now, when the user checks a check box, it works fine because each record showing on the list is simply one row from one table and there is no problem with the "Not an Updateable Recordset" message.
It works okay, but the drawback is that the data is not live, and, whenever the client refreshes the list to get the most current data, they loose all of the checkmarks because the recordset is deleted and then recreated each time they refresh the list.
Again, ultimately I want them to be able to simply check off which items on the list they want.
The list is created by joining several tables together to get the information I need. That part works fine. I get all of the appropriate records listed with all of their detail. But, when I join another table that simply has a yes/no field and the ClientID (linked on the clientID to the other joined tables), I get the message "This recordset is not updateable". The reason for having a separate selection table is because each person has this table located on their own machine so that each one can make their own selections to the list independent of each other.
I have tried to connect this additional selection table to the other tables in every combination, with every joining type I could - It yields the same answer. I have even used an event to fill the selection table with matching entries, but still no luck.
I have been able to connect this selection table to just one other table and it work fine. But when it is connected to either multiple joined tables or a query of multiple joined tables, I get the "not updateable" message again.
What I have done temporarily until I can get this figured out is the following:
I created a temporary table by using a Make Table query to match all of the fields of the multiple-joined tables. I have an Append Query run to fill the temporary table with the results of the query. Each record in this temp table has a Yes/No checkbox as a field. Now, when the user checks a check box, it works fine because each record showing on the list is simply one row from one table and there is no problem with the "Not an Updateable Recordset" message.
It works okay, but the drawback is that the data is not live, and, whenever the client refreshes the list to get the most current data, they loose all of the checkmarks because the recordset is deleted and then recreated each time they refresh the list.
Again, ultimately I want them to be able to simply check off which items on the list they want.