can a field within a table have security for editing?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

We have three users on one database. All three are editing certain columns
of information. Is it possible to lock a field within a table in an mdb so
that only certain individuals are allowed to edit the field?
 
Kathy said:
We have three users on one database. All three are editing certain
columns of information. Is it possible to lock a field within a
table in an mdb so that only certain individuals are allowed to edit
the field?

You would have to implement Acces User-Level Security (an advanced topic).
Then you would be able to remove all permissions to the tables and give the
various users "Run-With-Owners-Permissions" queries instead. Then you can
simply not include that column for those you don't want to see it or embed
it in an expression for those you want to have read-only access to it.

You could do the same without implementing security, but then users would be
free to open the table directly or open a query intended for other users.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top