Create a 2nd table, related to the first, so that one customer can have many
comments over time.
This table will have 3 fields:
CustomerID relates to the primary key field of your customsers table.
NoteDate Date/Time field, with Default Value of =Date()
Note Memo field where the user enters the comment.
You can then put a subform on your main form to show the comments for that
customers. On this subform, set AllowAdditions to Yes, AllowDeletions to No,
and AllowEdits to No.

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> Hello
>
[quoted text clipped - 28 lines]
>
> Thanks!
Sam - 20 Jul 2005 01:00 GMT
Hello Allen
The Subtable ETC appear just fine thanks, however I Get the following error
message when I try and enter more than one comment for the customer:-
"The Changes you requested to the table were not successful because they
would create duplicate values in the index, primary key or relationship.
Change the data in the field or fields that contain the duplicate data,
remove the index or redfine the index to allow duplicates and try again"
Dont know what I did wrong???
> Create a 2nd table, related to the first, so that one customer can have many
> comments over time.
[quoted text clipped - 40 lines]
> >
> > Thanks!
Allen Browne - 20 Jul 2005 03:53 GMT
In the comments table, CustomerID cannot be the primary key.
Add another field (AutoNumber) to be the primary key, so that the CustomerID
field can appear many times in this table (i.e. there can be multiple
comments for a customer.)

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> Hello Allen
>
[quoted text clipped - 56 lines]
>> > in
>> > any way.
Sam - 20 Jul 2005 05:56 GMT
Thanks Allen
You sure know your stuff!
> In the comments table, CustomerID cannot be the primary key.
>
[quoted text clipped - 62 lines]
> >> > in
> >> > any way.
TSnow - 17 Jan 2008 14:19 GMT
I have a question for Allen...If I want to combine all the comments into
another comment memo field, in another table, how can I do that sequentially
when there are more than one comment in the original? I want to do this so
when I run a report for a uunique record that has multiple comments, it will
not create multiple rows of repetitive data...
> Thanks Allen
>
[quoted text clipped - 66 lines]
> > >> > in
> > >> > any way.