Restrict number of records

  • Thread starter Thread starter Tausif
  • Start date Start date
T

Tausif

Hi All Gurus,

Is there any way to restrict number of records in a table. The number of
records in a table should always be 5. Please guide. Thankx.

Tausif.
 
Tausif said:
Hi All Gurus,

Is there any way to restrict number of records in a table. The number
of records in a table should always be 5. Please guide. Thankx.

Tausif.

Can you restrict direct access to the table? Using a form you can
disallow additions and deletions in the form properties, only allowing edits
and manually add five blank records.
 
Hi All Gurus,

Is there any way to restrict number of records in a table. The number of
records in a table should always be 5. Please guide. Thankx.

Tausif.

One sneaky way is to have an integer Primary Key field, with a
validation rule

IN (1, 2, 3, 4, 5)


John W. Vinson[MVP]
 

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

Similar Threads

Only alphabets 1
System table for Table Fields 1
Move Access from TST to PRD 3
Generate SQL Script 1
Validation Rule 1
windows backup 1
Restrict number of records in a form 4
Restrict a Table number of Records 5

Back
Top