<?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: Script loading in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936359#M960241</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;IF(Isnull(comp), 'O',comp) as Comp&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Oct 2015 09:49:00 GMT</pubDate>
    <dc:creator>gautik92</dc:creator>
    <dc:date>2015-10-21T09:49:00Z</dc:date>
    <item>
      <title>Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936358#M960240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can I use the following script ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vente :&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;Load * ,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;IF(comp is null , 'O',comp) as Comp&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;Resident TempVente&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;drop&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;table&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: black;"&gt; Vente;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2015 09:40:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936358#M960240</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-21T09:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936359#M960241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;IF(Isnull(comp), 'O',comp) as Comp&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2015 09:49:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936359#M960241</guid>
      <dc:creator>gautik92</dc:creator>
      <dc:date>2015-10-21T09:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936360#M960242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If comp contains only numeric values, use the Alt function ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alt(comp,0) as Comp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.. otherwise use IsNull ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(IsNull(comp),'0',comp) as Comp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;flipside&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2015 09:51:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936360#M960242</guid>
      <dc:creator>flipside</dc:creator>
      <dc:date>2015-10-21T09:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936361#M960243</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,&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;IF(ISNULL(Comp) OR LEN(Comp) = 0, 0, Comp)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp; FieldName&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;Resident TempVente&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: black;"&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;drop&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: blue;"&gt;table&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; font-family: 'Courier New'; color: black;"&gt; Vente;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2015 09:56:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936361#M960243</guid>
      <dc:creator>Gabriel</dc:creator>
      <dc:date>2015-10-21T09:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936362#M960244</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;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Another solution&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14454220654126077" jivemacro_uid="_14454220654126077" modifiedtitle="true"&gt;
&lt;P&gt;Vente :&lt;/P&gt;
&lt;P&gt;Load * ,&lt;/P&gt;
&lt;P&gt;IF(Len(Trim(comp))&amp;gt;0, 0,comp) as Comp&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Resident TempVente;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;drop table TempVente;&lt;/P&gt;



&lt;/PRE&gt;&lt;P&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;Above script will work, even for blank cells.&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;IMG __jive_id="102652" alt="scriptina.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/102652_scriptina.jpg" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2015 10:11:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936362#M960244</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-10-21T10:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936363#M960245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;surely you want to change your DROP statement to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table &lt;STRONG&gt;Temp&lt;/STRONG&gt;Vente;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2015 10:20:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936363#M960245</guid>
      <dc:creator>marcus_malinow</dc:creator>
      <dc:date>2015-10-21T10:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936364#M960246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would reverse the order of true and false here &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;&lt;STRONG&gt;If(Len(Trim(comp)) &amp;gt; 0, comp, 0) as Comp&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2015 10:24:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936364#M960246</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-10-21T10:24:09Z</dc:date>
    </item>
    <item>
      <title>Re: Script loading</title>
      <link>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936365#M960247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My mistake &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/confused.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2015 10:32:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Script-loading/m-p/936365#M960247</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-10-21T10:32:41Z</dc:date>
    </item>
  </channel>
</rss>

