I have tried and tried and cannot seem to accompish what I need to ... please help
I have a form with multiple fields, one of which is a memo field where I need to list multiple comments in reference to the record. This memo field needs to be built from a series of 'predefined' comments. These commments are stored in another table. Here is my sample layout of tables:
Table 1:
RecordID
Name
Comments (memo field)
Table 2:
CommentName
CommentText (memo field)
So what I need to accomplish is when I open a form built from Table 1, I want a drop down menu with the CommentNames in it and then by clicking a button it copies the CommentText from Table 2 into Comments on Table 1. The catch is that I need to be able to concatenate the comments together. In other works, if you pick Comment1 from the drop down and it transfers the text after clicking a button, I must then be able to pick another comment from the list and have it add it on to what is already in the Comment field .
I tried to program this many times through VBA in access and the best I could accomplish was it transfering over the first 255 characters. This doesn't make sense though, since both are memo fields. In any case, I am starting fresh now and need some help.
Hope I have made this clear enought, but please let me know if I can clarify futher. Thanks in advance!!!
I have a form with multiple fields, one of which is a memo field where I need to list multiple comments in reference to the record. This memo field needs to be built from a series of 'predefined' comments. These commments are stored in another table. Here is my sample layout of tables:
Table 1:
RecordID
Name
Comments (memo field)
Table 2:
CommentName
CommentText (memo field)
So what I need to accomplish is when I open a form built from Table 1, I want a drop down menu with the CommentNames in it and then by clicking a button it copies the CommentText from Table 2 into Comments on Table 1. The catch is that I need to be able to concatenate the comments together. In other works, if you pick Comment1 from the drop down and it transfers the text after clicking a button, I must then be able to pick another comment from the list and have it add it on to what is already in the Comment field .
I tried to program this many times through VBA in access and the best I could accomplish was it transfering over the first 255 characters. This doesn't make sense though, since both are memo fields. In any case, I am starting fresh now and need some help.
Hope I have made this clear enought, but please let me know if I can clarify futher. Thanks in advance!!!