Page 1 of 1

Concatenate fields

Posted: Mon Dec 07, 2015 3:37 pm
by dhascup
${Concat(dataItem[7], dataItem[8])}

This is not working. Asking for text field only. Do I need to add a field to the as400 file and modify the program to concatenate prior to sending to goAnywhere?


Regards,
David Hascup

Re: Concatenate fields

Posted: Mon Dec 07, 2015 5:41 pm
by Support_Rick
David,

Not knowing the details, I would try something like:

${ Concat( String(dataItem[7]), String(dataItem[8]) ) }

Let me know.

Re: Concatenate fields

Posted: Wed Dec 09, 2015 3:53 pm
by dhascup
Rick,

Excellent….works perfect. Thank you

David