<?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: My script i miss &amp;quot; ' &amp;quot; it does pop up error msg ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/My-script-i-miss-quot-quot-it-does-pop-up-error-msg/m-p/612940#M683840</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thank you all reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found the issue, after i remove the below line of code , now work fine. not so sure what the below line of code work ? it seem to me , it just load my previous sales QVD file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//store sales_table into sales_table.qvd (qvd);&lt;/P&gt;&lt;P&gt;//Drop Table sales_table;&lt;/P&gt;&lt;P&gt;//sales_table:&lt;/P&gt;&lt;P&gt;//Load *,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Preceding Load on&lt;/P&gt;&lt;P&gt;//if(Exists(company),0,1) as NewFlag;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&amp;nbsp; Preceding Load&lt;/P&gt;&lt;P&gt;//LOAD * FROM sales_table.qvd (qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Feb 2014 02:25:42 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-02-06T02:25:42Z</dc:date>
    <item>
      <title>My script i miss " ' " it does pop up error msg ?</title>
      <link>https://community.qlik.com/t5/QlikView/My-script-i-miss-quot-quot-it-does-pop-up-error-msg/m-p/612937#M683837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My script is not correct , but QV does not pop up error msg , and it just never run script. it is a bug ? As it take me quite some time to figure out where go wrong ?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="word hv 2 color final.png" class="jive-image" src="/legacyfs/online/52669_word hv 2 color final.png" style="width: 620px; height: 349px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 01:38:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/My-script-i-miss-quot-quot-it-does-pop-up-error-msg/m-p/612937#M683837</guid>
      <dc:creator />
      <dc:date>2014-02-06T01:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: My script i miss " ' " it does pop up error msg ?</title>
      <link>https://community.qlik.com/t5/QlikView/My-script-i-miss-quot-quot-it-does-pop-up-error-msg/m-p/612938#M683838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul, You are using SET function and its nor shown error message. Its only string representation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using only single quote (') and until next quote all the script read into that variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vVariable&amp;nbsp; = 'XS_2013 ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * FROM FILE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you reload this qvw, the vVaraible holds entire script from single quote to end of the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which version of Qlikview you are using ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 01:57:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/My-script-i-miss-quot-quot-it-does-pop-up-error-msg/m-p/612938#M683838</guid>
      <dc:creator />
      <dc:date>2014-02-06T01:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: My script i miss " ' " it does pop up error msg ?</title>
      <link>https://community.qlik.com/t5/QlikView/My-script-i-miss-quot-quot-it-does-pop-up-error-msg/m-p/612939#M683839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is different:&lt;/P&gt;&lt;P&gt;SET just assigns the value as string whatever you give.&lt;/P&gt;&lt;P&gt;LET evaluates the expresion and assigns it to the variable.&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;SET vString = 'Qlik' &amp;amp; 'View'&amp;nbsp; -&amp;gt; vString will return QlikView&lt;/P&gt;&lt;P&gt;LET vNumber = 1 + 2 -&amp;gt; vNumber will return 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For color, I'm not sure about this. It can be from your script line or can be a bug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For reload script, yes, it right, script line run without error. In your case, all script line after vFile2012a will consideer as a string value for your variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To understand more, my suggestion is create new app and use only this part:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vFile9 = 'X_OD';&lt;/P&gt;&lt;P&gt;SET vFile2013 = 'X_OD_2013';&lt;/P&gt;&lt;P&gt;SET vFile2012a = 'X_OD_2012;&lt;/P&gt;&lt;P&gt;SET vFile2011 = 'X_OD_2011';&lt;/P&gt;&lt;P&gt;SET vFile10 = 'X_OD_2010';&lt;/P&gt;&lt;P&gt;SET vFile11 = 'X_OD_2009';&lt;/P&gt;&lt;P&gt;SET vFile111 = 'X_OD_2008';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After load script, only three variables (vFile9, vFile2013 and vFile2012a) will return value:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;vFile9&lt;/STRONG&gt; = 'X_OD'&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;vFile2013&lt;/STRONG&gt; = 'X_OD_2013'&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;vFile2012a&lt;/STRONG&gt; = 'X_OD_2012&lt;/P&gt;&lt;P&gt;SET vFile2011 = 'X_OD_2011';&lt;/P&gt;&lt;P&gt;SET vFile10 = 'X_OD_2010';&lt;/P&gt;&lt;P&gt;SET vFile11 = 'X_OD_2009';&lt;/P&gt;&lt;P&gt;SET vFile111 = 'X_OD_2008';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sokkorn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 02:10:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/My-script-i-miss-quot-quot-it-does-pop-up-error-msg/m-p/612939#M683839</guid>
      <dc:creator>Sokkorn</dc:creator>
      <dc:date>2014-02-06T02:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: My script i miss " ' " it does pop up error msg ?</title>
      <link>https://community.qlik.com/t5/QlikView/My-script-i-miss-quot-quot-it-does-pop-up-error-msg/m-p/612940#M683840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thank you all reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found the issue, after i remove the below line of code , now work fine. not so sure what the below line of code work ? it seem to me , it just load my previous sales QVD file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//store sales_table into sales_table.qvd (qvd);&lt;/P&gt;&lt;P&gt;//Drop Table sales_table;&lt;/P&gt;&lt;P&gt;//sales_table:&lt;/P&gt;&lt;P&gt;//Load *,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Preceding Load on&lt;/P&gt;&lt;P&gt;//if(Exists(company),0,1) as NewFlag;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&amp;nbsp; Preceding Load&lt;/P&gt;&lt;P&gt;//LOAD * FROM sales_table.qvd (qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Feb 2014 02:25:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/My-script-i-miss-quot-quot-it-does-pop-up-error-msg/m-p/612940#M683840</guid>
      <dc:creator />
      <dc:date>2014-02-06T02:25:42Z</dc:date>
    </item>
  </channel>
</rss>

