AndyC88
Member
- Local time
- Today, 13:12
- Joined
- Dec 4, 2020
- Messages
- 44
Hi all,
My first (and almost certainly last!
) database will soon be going 'live' where I work after many weeks (/months) of trial, error and pain...
The database tracks personnel, equipment and training data for my organisation. One of my forms allows a user to select multiple 'users' in the database, and select multiple pieces of 'equipment', and then runs a Query that adds all the selected equipment to all the selected users.
It is set up like this:
And then run the Query:
The issue I've been contemplating, is if two users are using the database at the same time, and make different, independent selections, when the append Query is run, all the selections will be added to all users.
Currently, my workaround would be to limit the form to one person using at a time - but that doesn't feel like the right method. Is there a better of doing this?
Thanks for your help,
My first (and almost certainly last!

The database tracks personnel, equipment and training data for my organisation. One of my forms allows a user to select multiple 'users' in the database, and select multiple pieces of 'equipment', and then runs a Query that adds all the selected equipment to all the selected users.
It is set up like this:
TblUsers | TblEquipment | TblEquipmentRequirements |
UserID (PK) | EquipmentID (PK) | RequirementID (PK) |
UserName | EquipmentName | UserID (FK) |
IsSelected | IsSelected | EquipmentID (FK) |
And then run the Query:
SQL:
INSERT INTO TblEquipmentRequirements ( UserID, EquipmentID )
SELECT TblUsers.UserID, TblEquipment.EquipmentID
FROM TblUsers, TblEquipment
WHERE (((TblUsers.[IsSelected])=True) AND ((TblEquipment.IsSelected)=True));
The issue I've been contemplating, is if two users are using the database at the same time, and make different, independent selections, when the append Query is run, all the selections will be added to all users.
Currently, my workaround would be to limit the form to one person using at a time - but that doesn't feel like the right method. Is there a better of doing this?
Thanks for your help,