I have a database with data stored in a backend.
I have a Form with a recordsource linking two tables, e.g.,
SELECT Companies.CompanyName, Orders.* FROM Companies INNER JOIN Orders ON Companies.Company_ID = Orders.Company_ID;
I would like a user to be able to select specific records (tickbox) which are then processed via a function.
I suspect that the easiest method is to allow a user to select specific records is to create a field, say 'Select1', in one of these tables which allows a user to select specific records prior to further processing. If I have other tables that requires similar selections, I would do the same for these.
This seems not very efficient, and if multi users are using the database, there may be issues.
Is there another appropriate method of getting the same result, i.e., being able to select specific records that can be processed further?
Hope I have explained this clearly!
Harris
I have a Form with a recordsource linking two tables, e.g.,
SELECT Companies.CompanyName, Orders.* FROM Companies INNER JOIN Orders ON Companies.Company_ID = Orders.Company_ID;
I would like a user to be able to select specific records (tickbox) which are then processed via a function.
I suspect that the easiest method is to allow a user to select specific records is to create a field, say 'Select1', in one of these tables which allows a user to select specific records prior to further processing. If I have other tables that requires similar selections, I would do the same for these.
This seems not very efficient, and if multi users are using the database, there may be issues.
Is there another appropriate method of getting the same result, i.e., being able to select specific records that can be processed further?
Hope I have explained this clearly!
Harris