<?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 Strange results from chr() function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Strange-results-from-chr-function/m-p/326146#M1178528</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Thanks Phersan and&amp;nbsp; Rob for the excellent and very prompt help.&amp;nbsp; I begin to see why I have heard others rave about how good the community support is for this product!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Feb 2012 22:59:59 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-02-28T22:59:59Z</dc:date>
    <item>
      <title>Strange results from chr() function</title>
      <link>https://community.qlik.com/t5/QlikView/Strange-results-from-chr-function/m-p/326143#M1178524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I am trying to create a list box which contains an expression to represent a ProjectID plus the Project Name.&amp;nbsp; An example would be: "PR265-Data Center Virtualization Phase 3"&amp;nbsp; The expression syntax is:&amp;nbsp; ='PR'&amp;amp;char(ProjectID)&amp;amp;'-'&amp;amp;Project&amp;nbsp; This seems to work except that the chr(ProjectID) is displayed as a high-ASCII character, such as a non-english character with accents, not the number I expected.&amp;nbsp; Data is drawn from a SQL Server 2005 db.&amp;nbsp; The field ProjectID is of type "int".&amp;nbsp; I am totally new to QlikView so an help or reference to where I should look would be greatly appreciated.&amp;nbsp; Thanks!&amp;nbsp; Terry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 20:59:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Strange-results-from-chr-function/m-p/326143#M1178524</guid>
      <dc:creator />
      <dc:date>2012-02-28T20:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Strange results from chr() function</title>
      <link>https://community.qlik.com/t5/QlikView/Strange-results-from-chr-function/m-p/326144#M1178525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you look at the definition of the function CHR from the help menu, you'll realize this isn't the function you want to use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H4&gt;&lt;A name="kanchor1251"&gt;&lt;/A&gt;&lt;A name="chr"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;chr( &lt;/SPAN&gt;&lt;SPAN style="font-style: italic;"&gt;n&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt; )&lt;/SPAN&gt; &lt;/H4&gt;&lt;P&gt;The ASCII character corresponding to number &lt;SPAN style="font-style: italic;"&gt;n&lt;/SPAN&gt;. The result is a string.&lt;/P&gt;&lt;H2&gt;Example:&lt;/H2&gt;&lt;P&gt;&lt;SPAN style="font-weight: bold;"&gt;chr( &lt;/SPAN&gt;&lt;SPAN style="font-weight: bold;"&gt;65&lt;/SPAN&gt;&lt;SPAN style="font-weight: bold;"&gt; )&lt;/SPAN&gt; returns the string &lt;SPAN style="font-style: italic;"&gt;'A'&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try using "text" or don't even use a function at all &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='PR'&amp;amp;text(ProjectID)&amp;amp;'-'&amp;amp;Project&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;='PR'&amp;amp;ProjectID&amp;amp;'-'&amp;amp;Project&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 21:11:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Strange-results-from-chr-function/m-p/326144#M1178525</guid>
      <dc:creator>phersan_sme</dc:creator>
      <dc:date>2012-02-28T21:11:11Z</dc:date>
    </item>
    <item>
      <title>Strange results from chr() function</title>
      <link>https://community.qlik.com/t5/QlikView/Strange-results-from-chr-function/m-p/326145#M1178526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chr() is the wrong function for this case. You want to use text().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='PR' &amp;amp;&lt;STRONG&gt; text&lt;/STRONG&gt;(ProjectID) &amp;amp;'-'&amp;amp;Project &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://robwunderlich.com"&gt;http://robwunderlich.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 21:14:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Strange-results-from-chr-function/m-p/326145#M1178526</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2012-02-28T21:14:06Z</dc:date>
    </item>
    <item>
      <title>Strange results from chr() function</title>
      <link>https://community.qlik.com/t5/QlikView/Strange-results-from-chr-function/m-p/326146#M1178528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Thanks Phersan and&amp;nbsp; Rob for the excellent and very prompt help.&amp;nbsp; I begin to see why I have heard others rave about how good the community support is for this product!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 22:59:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Strange-results-from-chr-function/m-p/326146#M1178528</guid>
      <dc:creator />
      <dc:date>2012-02-28T22:59:59Z</dc:date>
    </item>
  </channel>
</rss>

