Hi.
If you are restricted to using Jet, then the best way is to implement
User-Level security and remove permission to view the table from the regular
users. Then create queries for these users that omit these special records
and apply the "Run With Owner's Permissions" (RWOP) Property to the query.
Base your forms and reports these queries.
If you can use a client/server for the back end, then have the DBA restrict
these users from accessing this table and create views that avoid displaying
the special records.
The query that avoids the displaying special records would use the following
syntax:
SELECT *
FROM MyTable
WHERE (Confidential = FALSE);
.. . . where MyTable is the name of the table and Confidential is the name of
the field (Boolean data type) added to the table to distinguish the "special"
records.
HTH.
Gunny
See
http://www.QBuilt.com for all your database needs.
See
http://www.Access.QBuilt.com for Microsoft Access tips.
(Please remove ZERO_SPAM from my reply E-mail address so that a message will
be forwarded to me.)
- - -
If my answer has helped you, please sign in and answer yes to the question
"Did this post answer your question?" at the bottom of the message, which
adds your question and the answers to the database of answers. Remember that
questions answered the quickest are often from those who have a history of
rewarding the contributors who have taken the time to answer questions
correctly.