<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>How to split merge columns in reconcile doc extraction?</title><link>https://community.appian.com/discussions/f/process/27264/how-to-split-merge-columns-in-reconcile-doc-extraction</link><description>I have a CDT SOA_SUMMARY which is the parent of CDT SOA_ITEMS. In reconciliation the three columns (Bill Ref No., Bill Date, SOA Number) are merge into one. 
 
 I cannot select or draw manually to configure the column and my workaround is to manually</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to split merge columns in reconcile doc extraction?</title><link>https://community.appian.com/thread/106922?ContentTypeID=1</link><pubDate>Fri, 20 Jan 2023 04:32:33 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:92fb0c5b-60b9-4e25-9b76-5de72346b3e0</guid><dc:creator>randolph</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!extractedInfo: &amp;quot;10754250 11/26/2022 SOA-0000778701&amp;quot;,
  local!split: split(local!extractedInfo, &amp;quot; &amp;quot;),
  local!patient: ri!soaCDT.soaItems,
  
  a!forEach(
    items: local!patient,
    expression: 
    split(fn!index(fv!item,&amp;quot;billRefNo&amp;quot;,null), &amp;quot; &amp;quot;) &amp;amp; &amp;quot; &amp;quot; &amp;amp;
    fn!index(fv!item,&amp;quot;billDate&amp;quot;,null) &amp;amp; &amp;quot; &amp;quot; &amp;amp;
    fn!index(fv!item,&amp;quot;soaNumber&amp;quot;,null)
  ),
  
  /*a!map(*/
  /*bilRef: fv!index[1],*/
  /*bilDate: fv!index[1],*/
  /*soa: fv!index[1]*/
  /*)  */
)&lt;/pre&gt;&lt;br /&gt;I tried the code above but I do not know yet how to assign it or update the value in the CDT.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>