multiple entries in single field

  • Thread starter Thread starter scott pajari
  • Start date Start date
S

scott pajari

how can you multiple entries in a single field. example in a disaster
recovery database I want to list computers with multiple applications
and their corresponding product keys in a single box or field
 
Use a Memo type field. Break each line in the field with
Ctrl+Enter. The field is fully searchable later on if
you're looking for particular text randomly entered in any
particular record.

Hope this helps.
 
scott pajari said:
how can you multiple entries in a single field. example in a disaster
recovery database I want to list computers with multiple applications
and their corresponding product keys in a single box or field

Fields should never have more than one piece of data in them. You need a
second table that is related to the first with a 1 to many relationship.
This is the why they call them relational databases :)

Then you can use a form/subform to enter the data.
 
I agree with Rick but I think in terms of Many-to-Many
Relation. With the M-to-M relationship, you will need at
least 3 Tables:

* tblComputer ComputerID PK
* tblApplication ApplicationID PK
* tblCoputerApplication that joins Records from the above
2 Tables.

Check Access Help on Many-to-Many relationship.

HTH
Van T. Dinh
MVP (Access)
 

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