<?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 What is chr(39)? Why it is in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/What-is-chr-39-Why-it-is/m-p/1149140#M897919</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the code.&lt;/P&gt;&lt;P&gt;Please explain.&lt;/P&gt;&lt;P&gt;LET vTrendStart = '=Date(YearStart(Addmonths(Max(MonthYear), -12)), ' &amp;amp; chr(39) &amp;amp; 'MMMYY' &amp;amp; chr(39) &amp;amp; ')';&lt;/P&gt;&lt;P&gt;LET vTrendEnd = '=Date(MonthStart(Max({&amp;lt;_History = {1}&amp;gt;} MonthYear)), ' &amp;amp; chr(39) &amp;amp; 'MMMYY' &amp;amp; chr(39) &amp;amp; ')';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>arethaking</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>What is chr(39)? Why it is</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-chr-39-Why-it-is/m-p/1149140#M897919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the code.&lt;/P&gt;&lt;P&gt;Please explain.&lt;/P&gt;&lt;P&gt;LET vTrendStart = '=Date(YearStart(Addmonths(Max(MonthYear), -12)), ' &amp;amp; chr(39) &amp;amp; 'MMMYY' &amp;amp; chr(39) &amp;amp; ')';&lt;/P&gt;&lt;P&gt;LET vTrendEnd = '=Date(MonthStart(Max({&amp;lt;_History = {1}&amp;gt;} MonthYear)), ' &amp;amp; chr(39) &amp;amp; 'MMMYY' &amp;amp; chr(39) &amp;amp; ')';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-chr-39-Why-it-is/m-p/1149140#M897919</guid>
      <dc:creator>arethaking</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: What is chr(39)? Why it is</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-chr-39-Why-it-is/m-p/1149141#M897920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chr(39) means single quote. If you use single quote directly in the LET statement it will not evaluate properly and that is the reason you use Chr(39). Hope this helps...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2016 15:07:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-chr-39-Why-it-is/m-p/1149141#M897920</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-07-26T15:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: What is chr(39)? Why it is</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-chr-39-Why-it-is/m-p/1149142#M897921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the answer.could you explain how it will works for the above syntax.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2016 15:15:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-chr-39-Why-it-is/m-p/1149142#M897921</guid>
      <dc:creator>arethaking</dc:creator>
      <dc:date>2016-07-26T15:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: What is chr(39)? Why it is</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-chr-39-Why-it-is/m-p/1149143#M897922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;first of all it is good to know what the CHR function does... It returns the string character corresponding to its number.&lt;/P&gt;&lt;P&gt;Examples:&lt;/P&gt;&lt;P&gt;CHR(13) returns a carriage return&lt;/P&gt;&lt;P&gt;CHR(65) returns A (Capital A)&lt;/P&gt;&lt;P&gt;CHR(64) return @ (At simbol)&lt;/P&gt;&lt;P&gt;CHR(39) returns ' (single quote)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Character codes can be found in multiple sites (Example: &lt;A href="http://www.asciitable.com/" title="http://www.asciitable.com/"&gt;http://www.asciitable.com/&lt;/A&gt; )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the reason why it is being used in that expression is that as you are trying to use single quotes insinde an expression already enclosed by single quotes, so the in the &lt;EM&gt;Let&lt;/EM&gt; statement wont be evaluated properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2016 15:19:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-chr-39-Why-it-is/m-p/1149143#M897922</guid>
      <dc:creator>santiago_respane</dc:creator>
      <dc:date>2016-07-26T15:19:27Z</dc:date>
    </item>
  </channel>
</rss>

