<?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: Assigning a numerical value to text strings in Qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478174#M691751</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can write directly in the script and use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Sep 2013 13:26:35 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-09-06T13:26:35Z</dc:date>
    <item>
      <title>Assigning a numerical value to text strings in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478171#M691747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm hoping qlikview is able to do the following so that I dont have to do it in excel first and wondered if anyone here might be able to provide any assistance?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have some data with a 5 possible answers as shown below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; How has your weight changed over the last year?&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;Arnold&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Increased A lot&lt;/P&gt;&lt;P&gt;Jenny&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Increased a little&lt;/P&gt;&lt;P&gt;Max&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Not changed&lt;/P&gt;&lt;P&gt;Heather&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Decreased a little&lt;/P&gt;&lt;P&gt;Ron&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Decreased a lot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I want to do is show these on a guage using by assigning each possible answer a number, so Increased a lot = 2, increased a little = 1, no change = 0 etc into -1 and -2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way I can do this In qlikview?&lt;/P&gt;&lt;P&gt;Ideall I would like to add it as an extra field so can I incorporate into the load script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Sep 2013 19:29:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478171#M691747</guid>
      <dc:creator />
      <dc:date>2013-09-03T19:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning a numerical value to text strings in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478172#M691748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Andrew, you can do it using dual() function.&amp;nbsp; No need for an additional field.&amp;nbsp; Can be done with mapping or with 4-level "if".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With map:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MyMap:&lt;/P&gt;&lt;P&gt;MAPPING LOAD * INLINE[&lt;/P&gt;&lt;P&gt;A,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B&lt;/P&gt;&lt;P&gt;Increased A lot,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Increased a little,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;Not changed,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;Decreased a little,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -1&lt;/P&gt;&lt;P&gt;Decreased a lot,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;dual([How has], applymap('MyMap',[How has])) as [How has],&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The new [How has] is the text and the number at the same time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Sep 2013 19:39:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478172#M691748</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-03T19:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning a numerical value to text strings in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478173#M691750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This sounds great but I'm not sure how the mapping works? (not done mapping before)&lt;/P&gt;&lt;P&gt;Are you saying i need to create an excel file (or similar) called MyMap? or can i write this directly into the script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry about this, but clarity on how to do the map would be great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 12:47:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478173#M691750</guid>
      <dc:creator />
      <dc:date>2013-09-06T12:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning a numerical value to text strings in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478174#M691751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can write directly in the script and use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 13:26:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478174#M691751</guid>
      <dc:creator />
      <dc:date>2013-09-06T13:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Assigning a numerical value to text strings in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478175#M691753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;You can use Dual() values. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Here is one way of doing it.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;CreateDuals:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;LOAD dual(text,number) as YourFieldName INLINE [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;text, number&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Increased a lot, 2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;increased a little,1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;no change = 0 ];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Load the rest of your datamodel.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Drop the tabl CreateDuals.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;/Vegar&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 13:39:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478175#M691753</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2013-09-06T13:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Assigning a numerical value to text strings in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478176#M691755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/100292"&gt;Vegar Lie Arntsen&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Technically it is fine, but not good from the data modeling point - you create additional table which is unnecessary.&amp;nbsp; Dual is better.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew,&lt;/P&gt;&lt;P&gt;See example attached.&amp;nbsp; notice taht I have two lisy boxes for Answer - one is in text fromat, another in numeric, and it is &lt;STRONG&gt;the same field&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 13:54:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478176#M691755</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-09-06T13:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Assigning a numerical value to text strings in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478177#M691757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I missed the point that my solution only works if you have the numeric values in the transaction table (not the text) and you want to introduce a dual text value. So in this case it will not work, the applymap solution is one way to go.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/3931"&gt;Michael Solomovich&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I think you misunderstood the solution I presented. Yes I introduce a table in the model, but it is only temporary. I delete it after population my field with transaction data. The applymap-method is much slower and breaks the optimized load of qvds, the predefined dual method is faster and does not break optimized load. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Example code: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13784793495695973" jivemacro_uid="_13784793495695973" modifiedtitle="true"&gt;
&lt;P&gt;MyTempDualMaker:&lt;/P&gt;
&lt;P&gt;LOAD dual(A,B) as Answer INLINE [&lt;/P&gt;
&lt;P&gt;A, B&lt;/P&gt;
&lt;P&gt;Increased A lot, 2&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Increased a little, 1&lt;/P&gt;
&lt;P&gt;Not changed, 0&lt;/P&gt;
&lt;P&gt;Decreased a little, -1&lt;/P&gt;
&lt;P&gt;Decreased a lot, -2];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;YourDataSource:&lt;/P&gt;
&lt;P&gt;LOAD * INLINE [&lt;/P&gt;
&lt;P&gt;Name, Answer&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Arnold, 2&lt;/P&gt;
&lt;P&gt;Jenny, 1&lt;/P&gt;
&lt;P&gt;Max, 0&lt;/P&gt;
&lt;P&gt;Heather, -1&lt;/P&gt;
&lt;P&gt;Vegar, 0&lt;/P&gt;
&lt;P&gt;Ron, 2&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;DROP TABLE MyTempDualMaker;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 14:57:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478177#M691757</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2013-09-06T14:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Assigning a numerical value to text strings in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478178#M691758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi both,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for all your help, but really not getting on very well with this after scouring through everything youve said.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've added this to the load script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;MyMap:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;dual&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;A&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;B&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[UncertaintyComparedToLastYear]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;INLINE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[&lt;BR /&gt;A, B&lt;BR /&gt;Increased significantly, 2&lt;BR /&gt;Increased somewhat, 1&lt;BR /&gt;Broadly unchanged, 0&lt;BR /&gt;Declined somewhat, -1&lt;BR /&gt;Declined significantly, -2&lt;BR /&gt;]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;lt;&amp;lt;&amp;lt;Then I carry on loading my data.... &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;there are several tables&amp;gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;Directory;&amp;nbsp; &lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG style="color: #0000ff; font-size: 8pt;"&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Unique ID]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Year &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Created&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Year&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Name&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Email address]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Industry&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;UncertaintyComparedToLastYear&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;It just doesnt seem to be working... can you help?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;the uncertainty field is the one I want to have mapped - you can see the 5 possilbe options from the MyMap&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Kind regards and thanks for your help,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Andrew&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 19:34:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Assigning-a-numerical-value-to-text-strings-in-Qlikview/m-p/478178#M691758</guid>
      <dc:creator />
      <dc:date>2013-09-13T19:34:22Z</dc:date>
    </item>
  </channel>
</rss>

