<?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: Condition in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Condition/m-p/604778#M1092753</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if(type='m6', &amp;lt;expression 1&amp;gt;, &amp;lt;expression 2&amp;gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 May 2014 19:34:56 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-05-06T19:34:56Z</dc:date>
    <item>
      <title>Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Condition/m-p/604777#M1092752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;How can I write a condition where I have "type" is equal to m6. I used an if statement as my expression and it does not seem to like that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2014 19:31:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Condition/m-p/604777#M1092752</guid>
      <dc:creator />
      <dc:date>2014-05-06T19:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Condition/m-p/604778#M1092753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if(type='m6', &amp;lt;expression 1&amp;gt;, &amp;lt;expression 2&amp;gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2014 19:34:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Condition/m-p/604778#M1092753</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-06T19:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Condition/m-p/604779#M1092754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it depends on where you are trying to write it...Michael's solution is the simplest. but you may also want to look into set analysis. or provide context...example of a set analysis expression where you are calculating sum of Sales for all entities with "type" = m6 is something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;type={'m6'}&amp;gt;} Sales)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2014 19:41:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Condition/m-p/604779#M1092754</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-06T19:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Condition/m-p/604780#M1092755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Thank you, it doesn't seem to work with either.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2014 20:27:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Condition/m-p/604780#M1092755</guid>
      <dc:creator />
      <dc:date>2014-05-06T20:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Condition/m-p/604781#M1092756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi you can write&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With SET Analysis for expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp; Sum({&amp;lt;type={'m6'}&amp;gt;} Sales)&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;With If condition for dimension&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;&amp;nbsp; If( type = 'm6', &amp;lt;Expr1&amp;gt;, &amp;lt;Expr2&amp;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;&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;But strange why this two are not worked.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2014 20:34:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Condition/m-p/604781#M1092756</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-05-06T20:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: Condition</title>
      <link>https://community.qlik.com/t5/QlikView/Condition/m-p/604782#M1092757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not knowing your requirement or having a sample file, the above expressions are supposed to be examples...you will have to modify them to your specific requirement. if you are expecting an answer that works off the bat, you may want to attach a sample qvw or elaborate your requirements with some details.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 05:11:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Condition/m-p/604782#M1092757</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-07T05:11:58Z</dc:date>
    </item>
  </channel>
</rss>

