<?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 Problem with load Alphanumeric Field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-load-Alphanumeric-Field/m-p/171201#M41300</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I try an this is the solution also for load data from AS00.....for all&lt;/P&gt;&lt;P&gt;thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Mar 2010 12:57:17 GMT</pubDate>
    <dc:creator>jpengiu</dc:creator>
    <dc:date>2010-03-08T12:57:17Z</dc:date>
    <item>
      <title>Problem with load Alphanumeric Field</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-Alphanumeric-Field/m-p/171198#M41297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have wrote this simple script in Qlik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;LOAD&lt;/B&gt; * &lt;B&gt;INLINE&lt;/B&gt; [&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cod, Desc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7E2, Deesc1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;700, Desc2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4E2, Desc3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;400, Desc4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;/P&gt;&lt;P style="margin: 0cm 0cm 0pt;"&gt;then I create a simple table and when I select the code 7E2 over the column "Cod" the table show 2 row "7E2" and "700".&lt;/P&gt;&lt;P style="margin: 0cm 0cm 0pt;"&gt;The same thing with "4E2" and "400".&lt;/P&gt;&lt;P style="margin: 0cm 0cm 0pt;"&gt;Qlik trasform the alphanumeric cod 7E2 in 7*10^2 =700 and 4E2=4*10^2=400&lt;/P&gt;&lt;P style="margin: 0cm 0cm 0pt;"&gt;Is there a solution?&lt;/P&gt;&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;/P&gt;&lt;P style="margin: 0cm 0cm 0pt;"&gt;Thanks&lt;/P&gt;&lt;P style="margin: 0cm 0cm 0pt;"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 11:38:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-Alphanumeric-Field/m-p/171198#M41297</guid>
      <dc:creator>jpengiu</dc:creator>
      <dc:date>2010-03-08T11:38:36Z</dc:date>
    </item>
    <item>
      <title>Problem with load Alphanumeric Field</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-Alphanumeric-Field/m-p/171199#M41298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;There is, indeed. You should use TEXT() function when loading a possible numeric value when its text. It won't work with INLINE loads, as functions are not evaluated, but it will when extracting from your datasource&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;LOAD ... TEXT(Cod) AS Cod ...&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 12:03:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-Alphanumeric-Field/m-p/171199#M41298</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2010-03-08T12:03:28Z</dc:date>
    </item>
    <item>
      <title>Problem with load Alphanumeric Field</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-Alphanumeric-Field/m-p/171200#M41299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Code sample ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;LOAD TEXT(Cod) AS Cod,Desc;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;Cod, Desc&lt;BR /&gt;7E2, Deesc1&lt;BR /&gt;700, Desc2&lt;BR /&gt;4E2, Desc3&lt;BR /&gt;400, Desc4&lt;BR /&gt;];&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 12:17:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-Alphanumeric-Field/m-p/171200#M41299</guid>
      <dc:creator />
      <dc:date>2010-03-08T12:17:01Z</dc:date>
    </item>
    <item>
      <title>Problem with load Alphanumeric Field</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-Alphanumeric-Field/m-p/171201#M41300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I try an this is the solution also for load data from AS00.....for all&lt;/P&gt;&lt;P&gt;thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 12:57:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-Alphanumeric-Field/m-p/171201#M41300</guid>
      <dc:creator>jpengiu</dc:creator>
      <dc:date>2010-03-08T12:57:17Z</dc:date>
    </item>
  </channel>
</rss>

