<?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: Loading Manual fields and connect in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631099#M1087092</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your logic is correct.Since I have many fields in my table do I need to write a separate inline statement exclusively for this field and also the fields are not fixed.It can be a any type of combination but we have a delimiter |&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually this is separate requirement which I just received from my requestor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I build everything properly,but matching this by a new field is where I struck up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Jeba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 May 2014 13:58:11 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-05-28T13:58:11Z</dc:date>
    <item>
      <title>Loading Manual fields and connect</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631094#M1087087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need your help in the below task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a field which is in the below format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AAA1|AAA2|AAA3&lt;/P&gt;&lt;P&gt;AAA2|AAA1|AAA3|AAA4&lt;/P&gt;&lt;P&gt;AAA4|AAA3|AAA1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a manual field like below&lt;/P&gt;&lt;P&gt;AAA1&lt;/P&gt;&lt;P&gt;AAA2&lt;/P&gt;&lt;P&gt;AAA3&lt;/P&gt;&lt;P&gt;AAA4&lt;/P&gt;&lt;P&gt; and then when I select AAA1 it should select my original field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Jeba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 13:39:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631094#M1087087</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-28T13:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Manual fields and connect</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631095#M1087088</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;like this&lt;/P&gt;&lt;P&gt;load * ,left(Field,4) as NewField;&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Field&lt;/P&gt;&lt;P&gt;AAA1|AAA2|AAA3&lt;/P&gt;&lt;P&gt;AAA2|AAA1|AAA3|AAA4&lt;/P&gt;&lt;P&gt;AAA4|AAA3|AAA1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 13:44:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631095#M1087088</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-05-28T13:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Manual fields and connect</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631096#M1087089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jeba,&lt;/P&gt;&lt;P&gt;If I got your question right, this should work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;BR /&gt;load * inline [&lt;BR /&gt; OriginalField&lt;BR /&gt; AAA1|AAA2|AAA3&lt;BR /&gt; AAA2|AAA1|AAA3|AAA4&lt;BR /&gt; AAA4|AAA3|AAA1&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;New:&lt;BR /&gt;load distinct&lt;BR /&gt; OriginalField,&lt;BR /&gt; subfield(OriginalField, '|') as NewFeild&lt;BR /&gt;resident data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 13:46:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631096#M1087089</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-28T13:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Manual fields and connect</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631097#M1087090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashfaq,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However my field length is not fixed.The only delimiter is |&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also I have one more clarification in the Inline statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My database has many fields including the one which I want to filter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;still shall I use Inline?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jeba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 13:47:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631097#M1087090</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-28T13:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Manual fields and connect</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631098#M1087091</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;If it is not fixed, then use below code shown for NewField1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load * ,left(Field,4) as NewField,&lt;/P&gt;&lt;P&gt;Left(Field, Index(Field, '|') - 1) as NewField1;&lt;/P&gt;&lt;P&gt;LOAD * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Field&lt;/P&gt;&lt;P&gt;AAA1|AAA2|AAA3&lt;/P&gt;&lt;P&gt;AAA2|AAA1|AAA3|AAA4&lt;/P&gt;&lt;P&gt;AAA4|AAA3|AAA1&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;/P&gt;&lt;P&gt;Yo can apply the same while loading from database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 13:53:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631098#M1087091</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-05-28T13:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Manual fields and connect</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631099#M1087092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your logic is correct.Since I have many fields in my table do I need to write a separate inline statement exclusively for this field and also the fields are not fixed.It can be a any type of combination but we have a delimiter |&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually this is separate requirement which I just received from my requestor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I build everything properly,but matching this by a new field is where I struck up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Jeba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 13:58:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631099#M1087092</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-28T13:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Manual fields and connect</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631100#M1087093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi if you solution is what Michael suggest.&lt;/P&gt;&lt;P&gt;No need to worry about length.&lt;/P&gt;&lt;P&gt;you can create separate field while loading from database itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 14:01:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631100#M1087093</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-05-28T14:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Manual fields and connect</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631101#M1087094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No need for load inline.&amp;nbsp; If your have your OriginalField loaded form the database or any data source, only the seconf part is relevant.&amp;nbsp; The essence of the solution is the subfield() function which breaks the OriginalField intothe separate parts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 14:05:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631101#M1087094</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-28T14:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Manual fields and connect</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631102#M1087095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Jeba&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 14:10:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-Manual-fields-and-connect/m-p/631102#M1087095</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-28T14:10:40Z</dc:date>
    </item>
  </channel>
</rss>

