I have a Mail Merge attached to a SQL query that I need to reformat. The 'action_name' field was inserted and works properly. [EDIT: To clarify, all of the data appears under one mergefield name called "action_name"].
For example, it will appear in the letter like this:
PersonA, You are missing the following items: 'A, B, C, D, E and F.'
PersonB, You are missing the following items: 'A and B'
PersonC, You are missing the following items: 'A'
PersonD, You are missing the following items: 'A, B, C and D'
Of course each person receives their own letter, so they only see their own missing items.
When we give the letter to the other department, they have to manually hit enter on each time to reformat the letter and make it look like this:
PersonA, You are missing the following items:
'A,
B,
C,
D,
E,
F'
I will only do PersonA in this example. I think you get the idea.
How can I do this using code in a Mail Merge (or in the SQL code) so that others don't have to do this manually? I already know that the \v vertical formatting doesn't work for this. I read that it's for East Asian languages. Thanks for any tips!