Hi,
I have a REXX that scans through a PDS and gathers information to be placed into a another PDS which I then receive from the mainframe as a text file then import to a excel file.
What I need is to have some of the information to be in the same cell but with a line NEWLINE between it.
Can someone please assist with a tip.
This is the current code I am using"
if left(in.recid,1) = "I" then do
incond = incond || substr(in.recid,2,79) || "0A"x
however this does not appear to be working.
Your help is greatly appreciated.
I have a REXX that scans through a PDS and gathers information to be placed into a another PDS which I then receive from the mainframe as a text file then import to a excel file.
What I need is to have some of the information to be in the same cell but with a line NEWLINE between it.
Can someone please assist with a tip.
This is the current code I am using"
if left(in.recid,1) = "I" then do
incond = incond || substr(in.recid,2,79) || "0A"x
however this does not appear to be working.
Your help is greatly appreciated.