mjmiller24
Programmer
Hello,
I have a one to many link. I have each record, for one ID printed out. The problem is that I get the output like this:
For the ID 343
11. Problem Number
45
34
75
However, I want it to display like this:
11. Problem Number
45 34 75
This is my current code
local stringvar str := "";
if ( RecordNumber > 1) then
str := "SEE ATTACHED"
else
str := "";
f_result
So, how do I get the code to display in a horizontal line instead of a vertical line?
I appreciate any help.
I have a one to many link. I have each record, for one ID printed out. The problem is that I get the output like this:
For the ID 343
11. Problem Number
45
34
75
However, I want it to display like this:
11. Problem Number
45 34 75
This is my current code
local stringvar str := "";
if ( RecordNumber > 1) then
str := "SEE ATTACHED"
else
str := "";
f_result
So, how do I get the code to display in a horizontal line instead of a vertical line?
I appreciate any help.