<?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 Load Text(Upper(S)) ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-Text-Upper-S/m-p/290357#M107761</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think both will work fine, but I would prefer Text(Upper(S)),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why not try both and see what the results are?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2011 13:19:53 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-06-15T13:19:53Z</dc:date>
    <item>
      <title>Load Text(Upper(S)) ?</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Text-Upper-S/m-p/290356#M107760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I'm reading from a SQL database, one field are alfanumeric. I want to convert it to text and upper, should I write:&lt;/P&gt;&lt;P&gt;Load Text(Upper(S)) as Title or Load Upper(Text(S)) as Title ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 13:13:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Text-Upper-S/m-p/290356#M107760</guid>
      <dc:creator>johanlind</dc:creator>
      <dc:date>2011-06-15T13:13:25Z</dc:date>
    </item>
    <item>
      <title>Load Text(Upper(S)) ?</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Text-Upper-S/m-p/290357#M107761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think both will work fine, but I would prefer Text(Upper(S)),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why not try both and see what the results are?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 13:19:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Text-Upper-S/m-p/290357#M107761</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-06-15T13:19:53Z</dc:date>
    </item>
    <item>
      <title>Load Text(Upper(S)) ?</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Text-Upper-S/m-p/290358#M107762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried that : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD upper(alpha) as alpha INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; alpha&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; a34&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; b&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 54&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I obtain A34,B,54.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that what you wanted to do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 13:22:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Text-Upper-S/m-p/290358#M107762</guid>
      <dc:creator />
      <dc:date>2011-06-15T13:22:37Z</dc:date>
    </item>
    <item>
      <title>Load Text(Upper(S)) ?</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Text-Upper-S/m-p/290359#M107763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Most SQL databases will allow you to convert strings to uppercase within the SQL query. However, not all DBMSs conform to the standard, but most will allow you to use the Upper() function (Mysql, Postgres, Oracle). I think Access uses UCASE(). This allows you to just query select UCASE(S) as QV_field from ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 13:31:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Text-Upper-S/m-p/290359#M107763</guid>
      <dc:creator />
      <dc:date>2011-06-15T13:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Load Text(Upper(S)) ?</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Text-Upper-S/m-p/290360#M107764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I have tested both. If I do this:&lt;/P&gt;&lt;P&gt; LOAD upper(text(alpha)) as alpha INLINE [&lt;/P&gt;&lt;P&gt; alpha&lt;/P&gt;&lt;P&gt; 01-0003-01&lt;/P&gt;&lt;P&gt; 01-0003-1&lt;/P&gt;&lt;P&gt; 01-0005-1&lt;BR /&gt; &lt;BR /&gt; 123456&lt;/P&gt;&lt;P&gt;]; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I obtain 01-0003-01&lt;BR /&gt;01-0005-1&lt;BR /&gt;123456&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I do this:&lt;/P&gt;&lt;P&gt; LOAD text(upper(alpha)) as alpha INLINE [&lt;/P&gt;&lt;P&gt; alpha&lt;/P&gt;&lt;P&gt; 01-0003-01&lt;/P&gt;&lt;P&gt; 01-0003-1&lt;/P&gt;&lt;P&gt; 01-0005-1&lt;BR /&gt; &lt;BR /&gt; 123456&lt;/P&gt;&lt;P&gt;]; &lt;/P&gt;&lt;P&gt;I obtain 01-0003-01&lt;BR /&gt;01-0003-1&lt;BR /&gt;01-0005-1&lt;BR /&gt;123456&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2011 13:33:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Text-Upper-S/m-p/290360#M107764</guid>
      <dc:creator>johanlind</dc:creator>
      <dc:date>2011-06-15T13:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: Load Text(Upper(S)) ?</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Text-Upper-S/m-p/290361#M107765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; &lt;SPAN class="hps" title="Klicka om du vill visa alternativa översättningar"&gt;Why do&lt;/SPAN&gt; &lt;SPAN class="hps" title="Klicka om du vill visa alternativa översättningar"&gt;I get&lt;/SPAN&gt; &lt;SPAN class="hps" title="Klicka om du vill visa alternativa översättningar"&gt;different&lt;/SPAN&gt; &lt;SPAN class="hps" title="Klicka om du vill visa alternativa översättningar"&gt;results&lt;/SPAN&gt;?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 06:21:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Text-Upper-S/m-p/290361#M107765</guid>
      <dc:creator>johanlind</dc:creator>
      <dc:date>2011-06-16T06:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: Load Text(Upper(S)) ?</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Text-Upper-S/m-p/290362#M107766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am having similar problems. I have 2 SKUs 00056 and 0056. If I use Text(Upper I get 2 unique values. However, if I use Upper(Text I get only ONE value "00056". I believe this to be a bug, but I'm such a newbie that I don't even know where to log it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 20:02:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Text-Upper-S/m-p/290362#M107766</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-25T20:02:51Z</dc:date>
    </item>
  </channel>
</rss>

