<?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 HOW TO RECODE LABELS?? (part 2) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194261#M55236</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI GUYS!&lt;/P&gt;&lt;P&gt;i made a post just now about recoding labels, but it wasn't accurate. basically, this is what i wanted to ask.&lt;/P&gt;&lt;P&gt;In my script, i placed the below expression. Now the problem is, in my chart, under the MANUF_NO column, there are different types of data.&lt;/P&gt;&lt;P&gt;There is blank boxes, some which say CANNOT FIND, and some with the data in it, example : KL4009, KL3008,KL5080,BX3200,BK2678 so on and so forth. so basiclly if you can understand, i want to try and split them into 3 parts, which are,&lt;/P&gt;&lt;P&gt;1) CANNOT FIND : which has all the CANNOT data,&lt;/P&gt;&lt;P&gt;2)CAN FIND : which has all the other data, KL4009, KL3008,KL5080,BX3200,BK2678 so on so forth&lt;/P&gt;&lt;P&gt;3) MISSING VALUE : which are the blank boxes which are displayed inside the chart.&lt;/P&gt;&lt;P&gt;I think i am supposed to create a variable called STATUS, and recode 3 labels under it, (the labels are the 3 above mentioned), but i'm not sure how to go about doing this.&lt;/P&gt;&lt;P&gt;Any ideas? Thanks! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@297:354T as [MANUF_NO]&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Apr 2011 08:32:02 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-04-01T08:32:02Z</dc:date>
    <item>
      <title>HOW TO RECODE LABELS?? (part 2)</title>
      <link>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194261#M55236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI GUYS!&lt;/P&gt;&lt;P&gt;i made a post just now about recoding labels, but it wasn't accurate. basically, this is what i wanted to ask.&lt;/P&gt;&lt;P&gt;In my script, i placed the below expression. Now the problem is, in my chart, under the MANUF_NO column, there are different types of data.&lt;/P&gt;&lt;P&gt;There is blank boxes, some which say CANNOT FIND, and some with the data in it, example : KL4009, KL3008,KL5080,BX3200,BK2678 so on and so forth. so basiclly if you can understand, i want to try and split them into 3 parts, which are,&lt;/P&gt;&lt;P&gt;1) CANNOT FIND : which has all the CANNOT data,&lt;/P&gt;&lt;P&gt;2)CAN FIND : which has all the other data, KL4009, KL3008,KL5080,BX3200,BK2678 so on so forth&lt;/P&gt;&lt;P&gt;3) MISSING VALUE : which are the blank boxes which are displayed inside the chart.&lt;/P&gt;&lt;P&gt;I think i am supposed to create a variable called STATUS, and recode 3 labels under it, (the labels are the 3 above mentioned), but i'm not sure how to go about doing this.&lt;/P&gt;&lt;P&gt;Any ideas? Thanks! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@297:354T as [MANUF_NO]&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Apr 2011 08:32:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194261#M55236</guid>
      <dc:creator />
      <dc:date>2011-04-01T08:32:02Z</dc:date>
    </item>
    <item>
      <title>HOW TO RECODE LABELS?? (part 2)</title>
      <link>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194262#M55237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;one solution would be to create a mapping load table, like this:&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;&lt;BR /&gt;mapConditions:&lt;BR /&gt;MAPPING LOAD * INLINE [&lt;BR /&gt; Cond, Descr&lt;BR /&gt; CANNOT FIND, CANNOT FIND&lt;BR /&gt; , MISSING VALUE&lt;BR /&gt;];&lt;BR /&gt;&lt;BR /&gt;Data:&lt;BR /&gt;load *,&lt;BR /&gt; applymap('mapConditions', MANUF_NO, 'CAN FIND') as Status;&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt; ID, MANUF_NO&lt;BR /&gt; 1, CANNOT FIND&lt;BR /&gt; 2&lt;BR /&gt; 3, KL4009&lt;BR /&gt; 4, AAAA&lt;BR /&gt; 5, BDSS&lt;BR /&gt;];&amp;lt;div&amp;gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Hope this helps.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Regards,&lt;/DIV&gt;&lt;DIV&gt;Fernando&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Apr 2011 11:56:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194262#M55237</guid>
      <dc:creator>fosuzuki</dc:creator>
      <dc:date>2011-04-02T11:56:28Z</dc:date>
    </item>
    <item>
      <title>HOW TO RECODE LABELS?? (part 2)</title>
      <link>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194263#M55238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi! Thanks for your help, but i'm not sure about the second part of this working.&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;load *,&lt;/P&gt;&lt;P&gt;applymap('mapConditions', MANUF_NO, 'CAN FIND') as Status;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ID, MANUF_NO&lt;/P&gt;&lt;P&gt;1, CANNOT FIND&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3, KL4009&lt;/P&gt;&lt;P&gt;4, AAAA&lt;/P&gt;&lt;P&gt;5, BDSS&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;I don't understand what this means,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2011 08:00:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194263#M55238</guid>
      <dc:creator />
      <dc:date>2011-04-04T08:00:00Z</dc:date>
    </item>
    <item>
      <title>HOW TO RECODE LABELS?? (part 2)</title>
      <link>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194264#M55239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello again!&lt;/P&gt;&lt;P&gt;The 'CANNOT FIND' &amp;amp; 'MISSING VALUE' works, but the 'CAN FIND' is the problematic one.&lt;/P&gt;&lt;P&gt;I think it because there are a lot of data regarding 'CAN FIND'.&lt;/P&gt;&lt;P&gt;As in there are a lot of manufactor numbers which include KL4009, BK3008,KN2008, etc etc...&lt;/P&gt;&lt;P&gt;Is there a solution to put all this into one column also ? and put it under the map conditions ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2011 08:10:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194264#M55239</guid>
      <dc:creator />
      <dc:date>2011-04-04T08:10:36Z</dc:date>
    </item>
    <item>
      <title>HOW TO RECODE LABELS?? (part 2)</title>
      <link>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194265#M55240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Niles,&lt;/P&gt;&lt;P&gt;this second part was just an example to show yout how to use the Applymap function in your Load. You must replace the 'Load * inline .....'.&lt;/P&gt;&lt;P&gt;If you're not familiar with it, try looking for Mapping and Applymap in QV help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Fernando&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2011 13:53:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194265#M55240</guid>
      <dc:creator>fosuzuki</dc:creator>
      <dc:date>2011-04-04T13:53:46Z</dc:date>
    </item>
    <item>
      <title>HOW TO RECODE LABELS?? (part 2)</title>
      <link>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194266#M55241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since the MANUF_NO can vary a lot, my idea to deal with the 'CAN FIND' values was to use the 3rd parameter - defaultexpr - of the applymap function.&lt;/P&gt;&lt;P&gt;If you want to include each MANUF_NO in the mapping table, you would have to concatenate a distinct load from MANUF_NO. But I don't think this would increase speed.&lt;/P&gt;&lt;P&gt;I cant think of any other solution that would dramatically increase performance...&lt;/P&gt;&lt;P&gt;If you're loading the data from a DB, you could put the Status logic to the DB query. But I suspect that you are not loading from a database...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry but I'm not an expert yet... &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Fernando&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Apr 2011 14:08:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194266#M55241</guid>
      <dc:creator>fosuzuki</dc:creator>
      <dc:date>2011-04-04T14:08:31Z</dc:date>
    </item>
    <item>
      <title>HOW TO RECODE LABELS?? (part 2)</title>
      <link>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194267#M55242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks For your help Fernando!&lt;/P&gt;&lt;P&gt;Okay, could you help me again, now lets say in my chart, i have 6 boxes which say "CANNOT FIND' &amp;amp; 5 boxes which say 'MISSING VALUE'.&lt;/P&gt;&lt;P&gt;This is an add on about the first post.&lt;/P&gt;&lt;P&gt;so now...&lt;/P&gt;&lt;P&gt;1) 11 data .&lt;/P&gt;&lt;P&gt;2) 6 says 'CANNOT FIND', 5 says 'MISSING VALUE'&lt;/P&gt;&lt;P&gt;3)how do i add this into another box called COUNT?&lt;/P&gt;&lt;P&gt;so therefore, end result would be,&lt;/P&gt;&lt;P&gt;When click CANNOT FIND, the box beside would put 6.&lt;/P&gt;&lt;P&gt;Basically i want the programme to count, how many boxes there are with the display as CANNOT FIND, and display in the box called COUNT.&lt;/P&gt;&lt;P&gt;Do you understand what i'm trying to say ???&lt;/P&gt;&lt;P&gt;Thanks! i'm trying to find the solution for this now, but i can't seem to do it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2011 03:05:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194267#M55242</guid>
      <dc:creator />
      <dc:date>2011-04-05T03:05:09Z</dc:date>
    </item>
    <item>
      <title>HOW TO RECODE LABELS?? (part 2)</title>
      <link>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194268#M55243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure if I understood what you really want. But if you want to display the Count of each Status, you can create a ListBox and check the 'Show Frequency' option in the General tab. I've attached a sample qvw with this setting.&lt;/P&gt;&lt;P&gt;Hope this is what your need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Fernando&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2011 11:19:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194268#M55243</guid>
      <dc:creator>fosuzuki</dc:creator>
      <dc:date>2011-04-05T11:19:43Z</dc:date>
    </item>
    <item>
      <title>HOW TO RECODE LABELS?? (part 2)</title>
      <link>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194269#M55244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Fernando!! Thanks for the sample attachment!!&lt;/P&gt;&lt;P&gt;Well, the problem is that, that one only searches the one with CANNOT FIND, and then puts the frequency as 1.&lt;/P&gt;&lt;P&gt;like i asked previously, there are say 6 boxes with CANNOT FIND, so the frequency must be 6!&lt;/P&gt;&lt;P&gt;But what you gave me is like, since everything is listed as CANNOT FIND, the frequency is just 1, you understand?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2011 03:51:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194269#M55244</guid>
      <dc:creator />
      <dc:date>2011-04-06T03:51:04Z</dc:date>
    </item>
    <item>
      <title>HOW TO RECODE LABELS?? (part 2)</title>
      <link>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194270#M55245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Fernando!&lt;/P&gt;&lt;P&gt;It's alright! i found a simple solution to that Count problem! Its not really what i wanted, but it will work.&lt;/P&gt;&lt;P&gt;All we have to do is,&lt;/P&gt;&lt;P&gt;1) Click the Properties of the Chart,&lt;/P&gt;&lt;P&gt;2) Go to the Expression which we are dealing with, in this case, MANUF_NO.&lt;/P&gt;&lt;P&gt;3)Under Total Mode, click the (Sum of Rows) box, and change the sum to TOTAL COUNT.&lt;/P&gt;&lt;P&gt;4)Click OK, when you come to the main screen, under the MANUF_NO column, the frequency number will be displayed!&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;P&gt;Thanks for your help! [=&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Apr 2011 02:23:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/HOW-TO-RECODE-LABELS-part-2/m-p/194270#M55245</guid>
      <dc:creator />
      <dc:date>2011-04-07T02:23:58Z</dc:date>
    </item>
  </channel>
</rss>

