<?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 where condition in dimension in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542839#M457143</link>
    <description>&lt;P&gt;I have a script but i dont want to write where condition in this script&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have dimensions like these&lt;/P&gt;&lt;P&gt;ID&lt;/P&gt;&lt;P&gt;Name&amp;nbsp;&lt;/P&gt;&lt;P&gt;Type&lt;/P&gt;&lt;P&gt;there is 3 types of people now i want only 3 type in table but i dont want to put where condition in script because this table is associated with other tables so i am trying to filter it out on TYPE dimension how i done this&amp;nbsp;&lt;/P&gt;&lt;P&gt;any help ?&lt;/P&gt;&lt;P&gt;??&lt;/P&gt;</description>
    <pubDate>Tue, 12 Feb 2019 09:47:39 GMT</pubDate>
    <dc:creator>capriconuser</dc:creator>
    <dc:date>2019-02-12T09:47:39Z</dc:date>
    <item>
      <title>where condition in dimension</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542839#M457143</link>
      <description>&lt;P&gt;I have a script but i dont want to write where condition in this script&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have dimensions like these&lt;/P&gt;&lt;P&gt;ID&lt;/P&gt;&lt;P&gt;Name&amp;nbsp;&lt;/P&gt;&lt;P&gt;Type&lt;/P&gt;&lt;P&gt;there is 3 types of people now i want only 3 type in table but i dont want to put where condition in script because this table is associated with other tables so i am trying to filter it out on TYPE dimension how i done this&amp;nbsp;&lt;/P&gt;&lt;P&gt;any help ?&lt;/P&gt;&lt;P&gt;??&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 09:47:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542839#M457143</guid>
      <dc:creator>capriconuser</dc:creator>
      <dc:date>2019-02-12T09:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in dimension</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542846#M457144</link>
      <description>&lt;P&gt;Assuming you want a,b,c you can do the following.&lt;/P&gt;&lt;PRE&gt;inner join (Your_source_table)

load * inline [

Type

a

b

c

];&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 09:55:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542846#M457144</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2019-02-12T09:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in dimension</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542856#M457145</link>
      <description>&lt;P&gt;no i dont want like that i want to filter it our on dimension not on script ..&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have data like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;type&amp;nbsp;&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;i add dimension TYPE then from that i only want 3&amp;nbsp;&lt;/P&gt;&lt;P&gt;i dont want to where condition in script&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 10:05:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542856#M457145</guid>
      <dc:creator>capriconuser</dc:creator>
      <dc:date>2019-02-12T10:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in dimension</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542862#M457146</link>
      <description>&lt;P&gt;try this in filter&lt;/P&gt;&lt;P&gt;if(type=3,type,null())&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 10:09:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542862#M457146</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2019-02-12T10:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in dimension</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542867#M457147</link>
      <description>&lt;P&gt;&lt;SPAN&gt;if(type=1 or type=2 or&amp;nbsp;type= 3&amp;nbsp;,type)&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 10:12:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542867#M457147</guid>
      <dc:creator>jyotiwagde</dc:creator>
      <dc:date>2019-02-12T10:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in dimension</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542869#M457148</link>
      <description>&lt;P&gt;this is not working&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 10:14:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542869#M457148</guid>
      <dc:creator>capriconuser</dc:creator>
      <dc:date>2019-02-12T10:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in dimension</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542875#M457149</link>
      <description>&lt;P&gt;if type field is in Text format put it in ' '(Single quote)&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 10:18:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542875#M457149</guid>
      <dc:creator>jyotiwagde</dc:creator>
      <dc:date>2019-02-12T10:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in dimension</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542876#M457150</link>
      <description>&lt;P&gt;i did that but not working&amp;nbsp;&lt;/P&gt;&lt;P&gt;if(type='3',type)&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 10:20:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542876#M457150</guid>
      <dc:creator>capriconuser</dc:creator>
      <dc:date>2019-02-12T10:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in dimension</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542878#M457151</link>
      <description>What exactly is the requirement? you are writing two fields type and TYPE. which is confusing . PLease state your requirement clearly to help you better. the above solution should have worked.</description>
      <pubDate>Tue, 12 Feb 2019 10:21:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542878#M457151</guid>
      <dc:creator>pradosh_thakur</dc:creator>
      <dc:date>2019-02-12T10:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: where condition in dimension</title>
      <link>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542886#M457152</link>
      <description>&lt;P&gt;type is TYPE is same ..&amp;nbsp;&lt;/P&gt;&lt;P&gt;look there is the data in TYPE column I.E. 1,2,3 now i want 3 type in my data like with this i have a separate columns from different tables&amp;nbsp;&lt;/P&gt;&lt;P&gt;i,e,&amp;nbsp;&lt;/P&gt;&lt;P&gt;name&amp;nbsp; &amp;nbsp; &amp;nbsp;country&amp;nbsp; &amp;nbsp; &amp;nbsp; address&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;type&amp;nbsp;&lt;/P&gt;&lt;P&gt;abc&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;US&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;none&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/P&gt;&lt;P&gt;xyz&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;UAE&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;abc_address&amp;nbsp; &amp;nbsp; &amp;nbsp;3&lt;/P&gt;&lt;P&gt;def&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MAL&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;gh_Address&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&lt;/P&gt;&lt;P&gt;and so on data&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;type typename&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; low&lt;/P&gt;&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; high&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;medium&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;now i add script like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;load name , country , address type from abc_file&amp;nbsp;&lt;/P&gt;&lt;P&gt;and on the other tab&amp;nbsp;&lt;/P&gt;&lt;P&gt;load type,typename from type_file&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;now if i only want data type 3 is supposed to write script like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;load name , country , address type from abc_file&amp;nbsp; &amp;nbsp;where type=3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;but i dont want like this&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;i add table then i add dimensions i.e. name and type so now on that type dimension how i add where condition&amp;nbsp; ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 10:34:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-condition-in-dimension/m-p/1542886#M457152</guid>
      <dc:creator>capriconuser</dc:creator>
      <dc:date>2019-02-12T10:34:07Z</dc:date>
    </item>
  </channel>
</rss>

