<?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: Restrict dimension value display in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Restrict-dimension-value-display/m-p/842805#M296167</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create field in load script as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(wildmatch(BD, 'ML', 'KL', 'BL'), [Nom])) as Nom_New&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;From Table&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&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; font-size: 13px;"&gt;Now use Nom_new in the dimension&amp;nbsp; of your chart&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Jun 2015 13:58:32 GMT</pubDate>
    <dc:creator>Kushal_Chawda</dc:creator>
    <dc:date>2015-06-17T13:58:32Z</dc:date>
    <item>
      <title>Restrict dimension value display</title>
      <link>https://community.qlik.com/t5/QlikView/Restrict-dimension-value-display/m-p/842803#M296165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;today i repost my probleme that i didnt solve&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem :&amp;nbsp; i want to show the dimensions of my straight table only if that respect a condition&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Exemple : my complete table&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" height="374" src="https://community.qlik.com/legacyfs/online/89769_Capture.PNG" style="height: 374px; width: 214.514px;" width="215" /&gt;&lt;/P&gt;&lt;P&gt;the solution was make a calculated dimesnion in a new table with this syntaxe : if (wildmatch(BD, 'ML', 'KL', 'BL'), [Nom])&lt;/P&gt;&lt;P&gt;And its work great, but its a performance killer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Somebedy Know i to do that directly in the script load? so that i load only want i want (may be in a new table)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i join the files on this post&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2015 13:42:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Restrict-dimension-value-display/m-p/842803#M296165</guid>
      <dc:creator />
      <dc:date>2015-06-17T13:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict dimension value display</title>
      <link>https://community.qlik.com/t5/QlikView/Restrict-dimension-value-display/m-p/842804#M296166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If You want to filter the data in the load script, then you can do it with "Where" in the load script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;FROM/Resident&lt;/P&gt;&lt;P&gt;Where Wildmatch(BD, 'ML', 'KL', 'BL')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2015 13:49:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Restrict-dimension-value-display/m-p/842804#M296166</guid>
      <dc:creator>sinanozdemir</dc:creator>
      <dc:date>2015-06-17T13:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict dimension value display</title>
      <link>https://community.qlik.com/t5/QlikView/Restrict-dimension-value-display/m-p/842805#M296167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create field in load script as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(wildmatch(BD, 'ML', 'KL', 'BL'), [Nom])) as Nom_New&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;From Table&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&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; font-size: 13px;"&gt;Now use Nom_new in the dimension&amp;nbsp; of your chart&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2015 13:58:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Restrict-dimension-value-display/m-p/842805#M296167</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-06-17T13:58:32Z</dc:date>
    </item>
  </channel>
</rss>

