<?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: Normalizing Upper and Lower characters of fields after loading data in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Normalizing-Upper-and-Lower-characters-of-fields-after-loading/m-p/652847#M669837</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nick, there are some strings functions to normalize the values like upper, lower and capitalize:&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor1283"&gt;&lt;/A&gt;&lt;A name="upper"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;upper( 'abcD' )&lt;/SPAN&gt; returns &lt;SPAN class="Italic"&gt;'ABCD'&lt;/SPAN&gt;. --&amp;gt; all upper case&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;lower( 'abcD' )&lt;/SPAN&gt; returns &lt;SPAN class="Italic"&gt;'abcd'&lt;/SPAN&gt;. --&amp;gt; all lower case&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;capitalize ('my little pony')&lt;/SPAN&gt; returns '&lt;SPAN class="Italic"&gt;My Little Pony&lt;/SPAN&gt;' --&amp;gt; first letter of eah word is upper case, the other lower case&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Oct 2014 08:12:27 GMT</pubDate>
    <dc:creator>rubenmarin</dc:creator>
    <dc:date>2014-10-03T08:12:27Z</dc:date>
    <item>
      <title>Normalizing Upper and Lower characters of fields after loading data</title>
      <link>https://community.qlik.com/t5/QlikView/Normalizing-Upper-and-Lower-characters-of-fields-after-loading/m-p/652846#M669836</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;I'm loading "County" from an excel file but the fields are either in UPPER or lower case (e.g. GREECE and greece) so they show as different countries in my app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I normalize the fields after I've loaded data, without having to fix the source data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks/n&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2014 08:07:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Normalizing-Upper-and-Lower-characters-of-fields-after-loading/m-p/652846#M669836</guid>
      <dc:creator>nls</dc:creator>
      <dc:date>2014-10-03T08:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: Normalizing Upper and Lower characters of fields after loading data</title>
      <link>https://community.qlik.com/t5/QlikView/Normalizing-Upper-and-Lower-characters-of-fields-after-loading/m-p/652847#M669837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nick, there are some strings functions to normalize the values like upper, lower and capitalize:&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor1283"&gt;&lt;/A&gt;&lt;A name="upper"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;upper( 'abcD' )&lt;/SPAN&gt; returns &lt;SPAN class="Italic"&gt;'ABCD'&lt;/SPAN&gt;. --&amp;gt; all upper case&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;lower( 'abcD' )&lt;/SPAN&gt; returns &lt;SPAN class="Italic"&gt;'abcd'&lt;/SPAN&gt;. --&amp;gt; all lower case&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;capitalize ('my little pony')&lt;/SPAN&gt; returns '&lt;SPAN class="Italic"&gt;My Little Pony&lt;/SPAN&gt;' --&amp;gt; first letter of eah word is upper case, the other lower case&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2014 08:12:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Normalizing-Upper-and-Lower-characters-of-fields-after-loading/m-p/652847#M669837</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2014-10-03T08:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: Normalizing Upper and Lower characters of fields after loading data</title>
      <link>https://community.qlik.com/t5/QlikView/Normalizing-Upper-and-Lower-characters-of-fields-after-loading/m-p/652848#M669838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First set all data to lower case and then Capitalize or Upper case:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Capitalize(lower(Country field))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Capitalize(lower(F1)) as Country;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Netherlands&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; NETHERLANDS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; GermanY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; germany&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;F1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;GermanY&lt;/P&gt;&lt;P&gt;germany&lt;/P&gt;&lt;P&gt;NETHERLANDS&lt;/P&gt;&lt;P&gt;Netherlands&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;will become:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Country&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Germany&lt;/P&gt;&lt;P&gt;Netherlands&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2014 08:17:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Normalizing-Upper-and-Lower-characters-of-fields-after-loading/m-p/652848#M669838</guid>
      <dc:creator>Michiel_QV_Fan</dc:creator>
      <dc:date>2014-10-03T08:17:09Z</dc:date>
    </item>
  </channel>
</rss>

