<?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: Code in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Code/m-p/741669#M1035956</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this as a calculated dimension:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;=if(match(Platform ,'java','mre'),'java' ,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(match(Platform ,'N/A','browser'),'N/A', 'Others'))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure that the strings in the match() calls are exact copies of your input data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See doc in attachment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Jan 2015 15:54:12 GMT</pubDate>
    <dc:creator>Peter_Cammaert</dc:creator>
    <dc:date>2015-01-06T15:54:12Z</dc:date>
    <item>
      <title>Code</title>
      <link>https://community.qlik.com/t5/QlikView/Code/m-p/741664#M1035951</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;&lt;/P&gt;&lt;P&gt;I Have a table by name Handset , which has a column called Platform and the contenet under platform are &lt;/P&gt;&lt;P&gt;java&lt;/P&gt;&lt;P&gt;mre&lt;/P&gt;&lt;P&gt;natvie,&lt;/P&gt;&lt;P&gt;N/A&lt;/P&gt;&lt;P&gt;browser&lt;/P&gt;&lt;P&gt;apple&lt;/P&gt;&lt;P&gt;android&lt;/P&gt;&lt;P&gt;ios&lt;/P&gt;&lt;P&gt;symbian&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i want to display like&amp;nbsp; java mreas the same&amp;nbsp; but N/A and Browser should be named as N/A ,&lt;/P&gt;&lt;P&gt; and where ever we have android,ios,aplle it should be named as smart phones, and rest of the platform as others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how do we write this code in Qlikview will some one can help me out with this please &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 14:14:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Code/m-p/741664#M1035951</guid>
      <dc:creator />
      <dc:date>2015-01-06T14:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: Code</title>
      <link>https://community.qlik.com/t5/QlikView/Code/m-p/741665#M1035952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(wildmatch(Platform ,'java','mreas'),Platform ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(wildmatch(Platform ,'N/A','Browser'),'N/A',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(wildmatch('Platform','android','ios','apple','smart phones','Others'))))) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Marwen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 14:25:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Code/m-p/741665#M1035952</guid>
      <dc:creator>marwen_garwachi</dc:creator>
      <dc:date>2015-01-06T14:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Code</title>
      <link>https://community.qlik.com/t5/QlikView/Code/m-p/741666#M1035953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use a map in the load script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create the table of platforms you want to replace and what you want them to become&lt;/P&gt;&lt;P&gt;eg:&lt;/P&gt;&lt;P&gt;map_Table:&lt;/P&gt;&lt;P&gt;Mapping&lt;/P&gt;&lt;P&gt;Load * inline [&lt;/P&gt;&lt;P&gt;mapfrom,mapto&lt;/P&gt;&lt;P&gt;Browser, N/A&lt;/P&gt;&lt;P&gt;apple, smartphone&lt;/P&gt;&lt;P&gt;ios, smartphone&lt;/P&gt;&lt;P&gt;... etc...&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then when loading the handset table add in ;&lt;/P&gt;&lt;P&gt;applymap('map_Table',platform) as NewPlatform,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to either create a new 'Platform' field or another higher level field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 14:33:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Code/m-p/741666#M1035953</guid>
      <dc:creator>tcullinane</dc:creator>
      <dc:date>2015-01-06T14:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: Code</title>
      <link>https://community.qlik.com/t5/QlikView/Code/m-p/741667#M1035954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no borhter i tried with ur code but its not working &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 15:10:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Code/m-p/741667#M1035954</guid>
      <dc:creator />
      <dc:date>2015-01-06T15:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: Code</title>
      <link>https://community.qlik.com/t5/QlikView/Code/m-p/741668#M1035955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;could you share a sample file ?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrads, &lt;/P&gt;&lt;P&gt;Marwen &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 15:44:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Code/m-p/741668#M1035955</guid>
      <dc:creator>marwen_garwachi</dc:creator>
      <dc:date>2015-01-06T15:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Code</title>
      <link>https://community.qlik.com/t5/QlikView/Code/m-p/741669#M1035956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this as a calculated dimension:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;=if(match(Platform ,'java','mre'),'java' ,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(match(Platform ,'N/A','browser'),'N/A', 'Others'))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure that the strings in the match() calls are exact copies of your input data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See doc in attachment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 15:54:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Code/m-p/741669#M1035956</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-01-06T15:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: Code</title>
      <link>https://community.qlik.com/t5/QlikView/Code/m-p/741670#M1035957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/pcammaert"&gt;pcammaert&lt;/A&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks dude ,&amp;nbsp; its working fine now &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jan 2015 06:12:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Code/m-p/741670#M1035957</guid>
      <dc:creator />
      <dc:date>2015-01-07T06:12:30Z</dc:date>
    </item>
  </channel>
</rss>

