Create a continuous form with this query as its record source, and name the form frmUsers.
SELECT
u.userID,
u.user_name
FROM Users AS u
ORDER BY u.user_name;
Create a second form, fsubUserCategories, with this record source.
SELECT
u2c.userID,
u2c.categoryID,
cat.category_name
FROM
user_to_category AS u2c
INNER JOIN Categories AS cat
ON u2c.categoryID = cat.categoryID
ORDER BY cat.category_name;
Add a bound text box for category_name, and a combo box, cboCategoryID, bound to categoryID. Use this query as as the combo's row source property.
SELECT
cat.categoryID,
cat.category_name
FROM
Categories AS cat
LEFT JOIN (
SELECT categoryID
FROM user_to_category
WHERE userID=Forms!frmUsers!txtUserID
) AS sub
ON cat.categoryID = sub.categoryID
WHERE (((sub.categoryID) Is Null))
ORDER BY cat.category_name;
Expand the footer section of frmUsers and add fsubUserCategories to a subform control in the footer. Use userID as the link master/child properties on the subform control.
With that arrangement, the subform will display a row for each category assignment associated with the current user in the main form (frmUser).
Use frmUsers On Current event to requery the subform combo --- so it gets updated to contain only the available (unassigned) categories for the current user.
Form_frmUsers:
Private Sub Form_Current()
' Note: fsubUserCategories is the name of the subform control '
' my subform control uses the same name as the form it contains '
' but beware --- the names don't have to match --- double-check! '
Me.fsubUserCategories.Form.cboCategoryID.Requery
End Sub
In fsubUserCategories, requery cboCategoryID from the After Delete Confirm, After Insert, and After Update events --- again so that it gets updated to contain only the unassigned categories available for the current user.
Form_fsubUserCategories:
Private Sub Form_AfterDelConfirm(Status As Integer)
Me.cboCategoryID.Requery
End Sub
Private Sub Form_AfterInsert()
Me.cboCategoryID.Requery
End Sub
Private Sub Form_AfterUpdate()
Me.cboCategoryID.Requery
End Sub
This approach will allow you to view the category assignments for each user. You can also add or delete rows from the subform to manage those assignments.