<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic [ASK] Error multiple concatenate to table inside loop in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/ASK-Error-multiple-concatenate-to-table-inside-loop/m-p/1210057#M625510</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Qlik Master,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a load script that use loop and works fine, sample like below :&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid #000000; width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Original Load Script&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P style="font-size: 13.3333px;"&gt;Marketing_Budget:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD * INLINE [&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; INITIAL&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;];&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FOR nrow = 0 TO noOfRows('MS_Connection') - 1&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vDB = peek('ODBC',$(nrow),'MS_Connection');&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Let vFlag = peek('PATH_LEGAL',$(nrow),'MS_Connection');&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp; $(vDB);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Concatenate(Marketing_Budget)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;SQL select DISTINCT&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;substring(PROJECTNO FROM 4 FOR 2) AS Code_Branch,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;'$(vFlag)' AS Kode_Legal,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ASD.*&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;from Marketing ASD&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;next;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i try to add more script to concatenate to another table, error show up, and the query is like below :&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid #000000; width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;New Load Script&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;Marketing_Budget:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; INITIAL&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ErrorLog_Tbl:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * INLINE [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; INITIAL_ELT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR nrow = 0 TO noOfRows('MS_Connection') - 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vDB = peek('ODBC',$(nrow),'MS_Connection');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Let vFlag = peek('PATH_LEGAL',$(nrow),'MS_Connection');&lt;/P&gt;&lt;P&gt;&amp;nbsp; $(vDB);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(Marketing_Budget)&lt;/P&gt;&lt;P&gt;SQL select DISTINCT&lt;/P&gt;&lt;P&gt;substring(PROJECTNO FROM 4 FOR 2) AS Code_Branch,&lt;/P&gt;&lt;P&gt;'$(vFlag)' AS Kode_Legal,&lt;/P&gt;&lt;P&gt;ASD.*&lt;/P&gt;&lt;P&gt;from Marketing ASD&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate(ErrorLog_Tbl)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * INLINE[&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LEGAL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'$(vFlag)'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the error is :&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Error New Load Script&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;Syntax error, missing/misplaced FROM:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(ErrorLog_Tbl)&lt;/P&gt;&lt;P&gt;LOAD * INLINE[&lt;/P&gt;&lt;P&gt;LEGAL&lt;/P&gt;&lt;P&gt;'DTABB0'&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;Concatenate(ErrorLog_Tbl)&lt;/P&gt;&lt;P&gt;LOAD * INLINE[&lt;/P&gt;&lt;P&gt;LEGAL&lt;/P&gt;&lt;P&gt;'DTABB0'&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;I've tried to add&lt;/SPAN&gt; &lt;SPAN style="color: #3366ff;"&gt;&lt;STRONG&gt;set &lt;EM style="color: #c0c0c0;"&gt;ErrorMode&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;=0;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt;Also i've tried to test with static value for my second concatenate, remove single quote for my second concatenate.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13.3333px;"&gt;But still, mw second concatenate script doesn't add up.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why is this happening?&lt;/P&gt;&lt;P&gt;And is there any solution for this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thank you,&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Nov 2016 04:24:41 GMT</pubDate>
    <dc:creator>rendiyan</dc:creator>
    <dc:date>2016-11-07T04:24:41Z</dc:date>
    <item>
      <title>[ASK] Error multiple concatenate to table inside loop</title>
      <link>https://community.qlik.com/t5/QlikView/ASK-Error-multiple-concatenate-to-table-inside-loop/m-p/1210057#M625510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Qlik Master,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a load script that use loop and works fine, sample like below :&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid #000000; width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Original Load Script&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P style="font-size: 13.3333px;"&gt;Marketing_Budget:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD * INLINE [&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; INITIAL&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;];&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FOR nrow = 0 TO noOfRows('MS_Connection') - 1&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vDB = peek('ODBC',$(nrow),'MS_Connection');&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Let vFlag = peek('PATH_LEGAL',$(nrow),'MS_Connection');&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp; $(vDB);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Concatenate(Marketing_Budget)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;SQL select DISTINCT&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;substring(PROJECTNO FROM 4 FOR 2) AS Code_Branch,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;'$(vFlag)' AS Kode_Legal,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ASD.*&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;from Marketing ASD&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;next;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when i try to add more script to concatenate to another table, error show up, and the query is like below :&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid #000000; width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;New Load Script&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;Marketing_Budget:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; INITIAL&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ErrorLog_Tbl:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * INLINE [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; INITIAL_ELT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR nrow = 0 TO noOfRows('MS_Connection') - 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vDB = peek('ODBC',$(nrow),'MS_Connection');&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Let vFlag = peek('PATH_LEGAL',$(nrow),'MS_Connection');&lt;/P&gt;&lt;P&gt;&amp;nbsp; $(vDB);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(Marketing_Budget)&lt;/P&gt;&lt;P&gt;SQL select DISTINCT&lt;/P&gt;&lt;P&gt;substring(PROJECTNO FROM 4 FOR 2) AS Code_Branch,&lt;/P&gt;&lt;P&gt;'$(vFlag)' AS Kode_Legal,&lt;/P&gt;&lt;P&gt;ASD.*&lt;/P&gt;&lt;P&gt;from Marketing ASD&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate(ErrorLog_Tbl)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * INLINE[&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LEGAL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'$(vFlag)'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the error is :&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Error New Load Script&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;Syntax error, missing/misplaced FROM:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate(ErrorLog_Tbl)&lt;/P&gt;&lt;P&gt;LOAD * INLINE[&lt;/P&gt;&lt;P&gt;LEGAL&lt;/P&gt;&lt;P&gt;'DTABB0'&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;Concatenate(ErrorLog_Tbl)&lt;/P&gt;&lt;P&gt;LOAD * INLINE[&lt;/P&gt;&lt;P&gt;LEGAL&lt;/P&gt;&lt;P&gt;'DTABB0'&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;I've tried to add&lt;/SPAN&gt; &lt;SPAN style="color: #3366ff;"&gt;&lt;STRONG&gt;set &lt;EM style="color: #c0c0c0;"&gt;ErrorMode&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;=0;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt;"&gt;Also i've tried to test with static value for my second concatenate, remove single quote for my second concatenate.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13.3333px;"&gt;But still, mw second concatenate script doesn't add up.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why is this happening?&lt;/P&gt;&lt;P&gt;And is there any solution for this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thank you,&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2016 04:24:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ASK-Error-multiple-concatenate-to-table-inside-loop/m-p/1210057#M625510</guid>
      <dc:creator>rendiyan</dc:creator>
      <dc:date>2016-11-07T04:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: [ASK] Error multiple concatenate to table inside loop</title>
      <link>https://community.qlik.com/t5/QlikView/ASK-Error-multiple-concatenate-to-table-inside-loop/m-p/1210058#M625511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a quick try:&amp;nbsp;&amp;nbsp;&amp;nbsp; try putting space between 'INLINE' and '['&amp;nbsp; , like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD * &lt;STRONG&gt;INLINE&amp;nbsp; [&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LEGAL&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'$(vFlag)'&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2016 04:30:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ASK-Error-multiple-concatenate-to-table-inside-loop/m-p/1210058#M625511</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2016-11-07T04:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: [ASK] Error multiple concatenate to table inside loop</title>
      <link>https://community.qlik.com/t5/QlikView/ASK-Error-multiple-concatenate-to-table-inside-loop/m-p/1210059#M625512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it works.&lt;/P&gt;&lt;P&gt;what a funny error &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/laugh.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2016 04:40:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/ASK-Error-multiple-concatenate-to-table-inside-loop/m-p/1210059#M625512</guid>
      <dc:creator>rendiyan</dc:creator>
      <dc:date>2016-11-07T04:40:25Z</dc:date>
    </item>
  </channel>
</rss>

