Here’s what I’m trying to accomplish:
I have a customer survey. Let’s say for example (simplified, of course) that 3 customers respond to a survey as follows:
Customer 1 Response: Good
Customer 2 Response: Bad
Customer 3 Response: Ugly
These responses are entered onto a form which populates a field in a table.
I have a module with code that concatenates these responses.
Next I have a second form that a staff member of my agency will use. I have a text box on that form that pulls the concatenated results of the customer responses, like so:
=ConcatenateRecs("Table1","CustomerResponse")
Which results in:
Good, Bad, Ugly
In one text box when my staff member opens the form.
So what I need is to make that text box editable, so that my staff can add a narrative to the customer responses. For example: “Same comments we received last year”.
So the edited text would appear as:
Same comments we received last year: Good, Bad, Ugly.
Then I need to be able to populate this info into a text box on a report.
Is this possible, and if so, how would on go about it?
As always, thanks in advance for any assistance.
I have a customer survey. Let’s say for example (simplified, of course) that 3 customers respond to a survey as follows:
Customer 1 Response: Good
Customer 2 Response: Bad
Customer 3 Response: Ugly
These responses are entered onto a form which populates a field in a table.
I have a module with code that concatenates these responses.
Next I have a second form that a staff member of my agency will use. I have a text box on that form that pulls the concatenated results of the customer responses, like so:
=ConcatenateRecs("Table1","CustomerResponse")
Which results in:
Good, Bad, Ugly
In one text box when my staff member opens the form.
So what I need is to make that text box editable, so that my staff can add a narrative to the customer responses. For example: “Same comments we received last year”.
So the edited text would appear as:
Same comments we received last year: Good, Bad, Ugly.
Then I need to be able to populate this info into a text box on a report.
Is this possible, and if so, how would on go about it?
As always, thanks in advance for any assistance.