<?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 Re: to concat variable in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443922#M700391</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POLISTConcat:&lt;/P&gt;&lt;P&gt;Load Concat(Distinct PO,',') AS POConcat&lt;/P&gt;&lt;P&gt;Resident&lt;/P&gt;&lt;P&gt;POLIST;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vPO = FieldValue('POConcat',1);&lt;/P&gt;&lt;P&gt;DROP Table POLISTConcat;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Oct 2012 15:02:26 GMT</pubDate>
    <dc:creator>CELAMBARASAN</dc:creator>
    <dc:date>2012-10-23T15:02:26Z</dc:date>
    <item>
      <title>to concat variable</title>
      <link>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443918#M700387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The &lt;STRONG&gt;&amp;amp;' '&amp;amp;&lt;/STRONG&gt; is not working.&lt;/P&gt;&lt;P&gt;somebody help...... ?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for vVariableNo = 0 to NoOfRows('POLIST')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Let vPO = $(vPO) &amp;amp;' '&amp;amp; FieldValue('PO',vVariableNo);&lt;/P&gt;&lt;P&gt;next vVariableNo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 14:37:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443918#M700387</guid>
      <dc:creator />
      <dc:date>2012-10-23T14:37:18Z</dc:date>
    </item>
    <item>
      <title>Re: to concat variable</title>
      <link>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443919#M700388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vPO = 'test';&lt;/P&gt;&lt;P&gt;for vVariableNo = 0 to NoOfRows('POLIST')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vPO = vPO &amp;amp;' '&amp;amp; FieldValue('PO',$(vVariableNo));&lt;/P&gt;&lt;P&gt;next vVariableNo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 14:46:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443919#M700388</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-10-23T14:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: to concat variable</title>
      <link>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443920#M700389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mayil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i don't want test in my string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to put all the po number into variable by coma deliminator.&lt;/P&gt;&lt;P&gt;and i will use this to loop in my load script.&lt;/P&gt;&lt;P&gt;so i don't have to hardcode my PO number. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so. the result should be...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1234&lt;STRONG&gt;,&lt;/STRONG&gt; 2345&lt;STRONG&gt;,&lt;/STRONG&gt; 3454&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 14:53:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443920#M700389</guid>
      <dc:creator />
      <dc:date>2012-10-23T14:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: to concat variable</title>
      <link>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443921#M700390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vPO = '';&lt;/P&gt;&lt;P&gt;for vVariableNo = 0 to NoOfRows('POLIST')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vPO = vPO &amp;amp;','&amp;amp; FieldValue('PO',$(vVariableNo));&lt;/P&gt;&lt;P&gt;next vVariableNo&lt;/P&gt;&lt;P&gt;vPO&amp;nbsp; = right(vPO,len(vPO)-2);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 15:00:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443921#M700390</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-10-23T15:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: to concat variable</title>
      <link>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443922#M700391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POLISTConcat:&lt;/P&gt;&lt;P&gt;Load Concat(Distinct PO,',') AS POConcat&lt;/P&gt;&lt;P&gt;Resident&lt;/P&gt;&lt;P&gt;POLIST;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vPO = FieldValue('POConcat',1);&lt;/P&gt;&lt;P&gt;DROP Table POLISTConcat;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 15:02:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443922#M700391</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2012-10-23T15:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: to concat variable</title>
      <link>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443923#M700392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mayil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, i didnt see you remove the dollor sign. so it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i do it like this though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vPO = Text(FieldValue('PO', vVariableNo))&amp;nbsp; &amp;amp;','&amp;amp;&amp;nbsp; (vPO) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vPO cant be in front, it create some empty value. so i do it at the back. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;LET vPO = FieldValue('POConcat',1);&lt;/SPAN&gt; will only give one value isnt it?&lt;/P&gt;&lt;P&gt;as i understood. the 1 represent the row? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 15:05:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443923#M700392</guid>
      <dc:creator />
      <dc:date>2012-10-23T15:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: to concat variable</title>
      <link>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443924#M700393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;POLISTConcat:&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Load Concat(Distinct PO,',') AS POConcat&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Resident&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;POLIST;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;is a new table by concatenating the all the PO field values with comma separator.&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Did you checked it out how it works?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 15:07:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443924#M700393</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2012-10-23T15:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: to concat variable</title>
      <link>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443925#M700394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor310"&gt;&lt;/A&gt;&lt;A name="Fieldvalue"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;Fieldvalue(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;fieldname , n&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Returns the field value found in position &lt;SPAN class="Italic"&gt;n&lt;/SPAN&gt; of the field &lt;SPAN class="Italic"&gt;fieldname&lt;/SPAN&gt; (by load order). &lt;SPAN class="Italic"&gt;Fieldname&lt;/SPAN&gt; must be given as a string value, e.g. the field name must be enclosed by single quotes. The first field value is returned for &lt;SPAN class="Italic"&gt;n&lt;/SPAN&gt;=1. If &lt;SPAN class="Italic"&gt;n&lt;/SPAN&gt; is larger than the number of field values, NULL is returned. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, &lt;/P&gt;&lt;P&gt; FieldValue('POConcat',1); gives first value...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Celambarasan suggestion also, its easy know...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Oct 2012 15:09:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443925#M700394</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2012-10-23T15:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: to concat variable</title>
      <link>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443926#M700395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, i have problem with the loop, because at the end of the loop, i always get and empty value...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i'm using the concat function.. i didn't know it works this way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But thanks gentlemen for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2012 08:28:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/to-concat-variable/m-p/443926#M700395</guid>
      <dc:creator />
      <dc:date>2012-10-24T08:28:19Z</dc:date>
    </item>
  </channel>
</rss>

