Hello,
I'm attempting to create a string of text from a list of results
Answer
------------
value1
value2
value3
value4
value5
My goal is to loop through that list and finally display a string that I could insert into a more legible version of text, as in a typical paragraph, for instance:
"value1, value2, value3, value4, value5" (so, this post-process string would be a formula: {@result})
which I could then use in another formula...
{@longtext} = "The person owns these items: "+{@result}+" and would like to see what they are worth..."
Displaying:
The person owns these items: value1, value2, value3, value4, value5 and would like to see what they are worth...
Possibly, if I can get a handle on this operation, I'll maybe add an "and" in front of whatever the last value is (it won't always be the same number of results)
Lastly the above "Answer" field data will be generated in a subreport. I'm not sure if this operation should be performed in the subreport, or if I'll pass a shared variable(s)
Hopefully some kind genius can point me in the right direction. Let me know if I can provide any other details that might help! Thanks!!
I'm attempting to create a string of text from a list of results
Answer
------------
value1
value2
value3
value4
value5
My goal is to loop through that list and finally display a string that I could insert into a more legible version of text, as in a typical paragraph, for instance:
"value1, value2, value3, value4, value5" (so, this post-process string would be a formula: {@result})
which I could then use in another formula...
{@longtext} = "The person owns these items: "+{@result}+" and would like to see what they are worth..."
Displaying:
The person owns these items: value1, value2, value3, value4, value5 and would like to see what they are worth...
Possibly, if I can get a handle on this operation, I'll maybe add an "and" in front of whatever the last value is (it won't always be the same number of results)
Lastly the above "Answer" field data will be generated in a subreport. I'm not sure if this operation should be performed in the subreport, or if I'll pass a shared variable(s)
Hopefully some kind genius can point me in the right direction. Let me know if I can provide any other details that might help! Thanks!!