I have a table that currently has data in it. I want to use a form to all users to add new records to the table. I do not want the user to be able to edit existing data, only add new data.
Is the best bet for this to manually create labels/textboxes and use vba to map the textboxes to variables and use an Insert statement in VBA to add the newly input user data?
Or how should I achieve this?