<?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: Help with Load Script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/990861#M337643</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This worked, and I was able to find one more workaround, thanks a lot for the quick help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Oct 2015 08:14:30 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-10-16T08:14:30Z</dc:date>
    <item>
      <title>Help with Load Script</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/990857#M337639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG __jive_id="102143" alt="Load Script.JPG" class="jive-image image-1" src="/legacyfs/online/102143_Load Script.JPG" style="height: 169px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;I have a list of customers which I need to segregate based on the unique customers in each channels which comes from an excel file, refer the above screenshot. I have this built in chart but as this requires aggregation of millions of rows chart ends up eating the entire RAM and make the app very slow, please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want customer 2 and 3 to be marked as Phone_Only and 5 as Web only and remaining as Web and Phone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;P&gt;Nidhish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 19:22:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/990857#M337639</guid>
      <dc:creator />
      <dc:date>2015-10-15T19:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Load Script</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/990858#M337640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/102146_Capture.PNG" style="height: 268px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Script:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&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;Cus, Channel&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1, Phone&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1, Web&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2, Phone&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3, Phone&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;4, Phone&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;4, Web&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5, Web&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;STRONG&gt;Join(Table)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Distinct Cus,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Concat(Channel, '|') as GroupedChannel&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Group By Cus;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FinalTable:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Cus as Customer_Phone_Only,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Channel&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where WildMatch(GroupedChannel, '*Phone*') and not WildMatch(GroupedChannel, '*Web*');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate (FinalTable)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Cus as Customer_Web_Only,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Channel&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where not WildMatch(GroupedChannel, '*Phone*') and WildMatch(GroupedChannel, '*Web*');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate (FinalTable)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Cus as Customer_Web_and_Phone,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Channel&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where WildMatch(GroupedChannel, '*Phone*') and WildMatch(GroupedChannel, '*Web*');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DROP Table Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 19:52:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/990858#M337640</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-10-15T19:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Load Script</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/990859#M337641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you provide a picture of the table structure from the table view? How are the three tables linked?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 19:52:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/990859#M337641</guid>
      <dc:creator>crystles</dc:creator>
      <dc:date>2015-10-15T19:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Load Script</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/990860#M337642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may need to sort this in your load script to get a flag in your fact table for :&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Phone Only&lt;/LI&gt;&lt;LI&gt;Web Only&lt;/LI&gt;&lt;LI&gt;Both&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you won't need any front end aggregations.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 19:58:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/990860#M337642</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-15T19:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Load Script</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/990861#M337643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This worked, and I was able to find one more workaround, thanks a lot for the quick help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2015 08:14:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-Load-Script/m-p/990861#M337643</guid>
      <dc:creator />
      <dc:date>2015-10-16T08:14:30Z</dc:date>
    </item>
  </channel>
</rss>

