<?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: set analysis in loading script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/set-analysis-in-loading-script/m-p/124589#M602792</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no set analysis in script. You'll have to use good, old-fashioned conditional statements like if().&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Sep 2018 11:32:06 GMT</pubDate>
    <dc:creator>Or</dc:creator>
    <dc:date>2018-09-13T11:32:06Z</dc:date>
    <item>
      <title>set analysis in loading script</title>
      <link>https://community.qlik.com/t5/QlikView/set-analysis-in-loading-script/m-p/124588#M602791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Hello,&lt;/P&gt;&lt;P&gt;i neeed to know if i can uses set expression in load statement for example&amp;nbsp; Have _exp Variable&lt;/P&gt;&lt;P&gt;SALES :&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;PRODUCT,SALES from SALE;&lt;/P&gt;&lt;P&gt;product:&lt;/P&gt;&lt;P&gt;PRODUCT, name ,from products&lt;/P&gt;&lt;P&gt;let&amp;nbsp; _exp ='sum({&amp;lt; PRODUCT={'P1'}&amp;gt;}1)';&lt;/P&gt;&lt;P&gt;let _name='EXP1'&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;* ,&lt;/P&gt;&lt;P&gt;'$(_exp )' as&amp;nbsp; $(_name)&lt;/P&gt;&lt;P&gt;RESIDENT product&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2018 11:25:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/set-analysis-in-loading-script/m-p/124588#M602791</guid>
      <dc:creator>souadouert</dc:creator>
      <dc:date>2018-09-13T11:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: set analysis in loading script</title>
      <link>https://community.qlik.com/t5/QlikView/set-analysis-in-loading-script/m-p/124589#M602792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no set analysis in script. You'll have to use good, old-fashioned conditional statements like if().&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2018 11:32:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/set-analysis-in-loading-script/m-p/124589#M602792</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2018-09-13T11:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: set analysis in loading script</title>
      <link>https://community.qlik.com/t5/QlikView/set-analysis-in-loading-script/m-p/124590#M602793</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;no set expressions on script, but for the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;_exp variable ='sum({&amp;lt; PRODUCT={'P1'}&amp;gt;}1)'; you can try this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;table:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;load&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(PRODUCT='P1', 1) as SUM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;group by&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;all fields except SUM&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2018 12:28:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/set-analysis-in-loading-script/m-p/124590#M602793</guid>
      <dc:creator>YoussefBelloum</dc:creator>
      <dc:date>2018-09-13T12:28:25Z</dc:date>
    </item>
  </channel>
</rss>

