<?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: return value based on condition set in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/return-value-based-on-condition-set/m-p/962218#M970368</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be you can try the sunny's solution in opposite way..&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;If(Product&amp;lt;=30,'Product 1-30',&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Product&amp;gt;=100 and Product&amp;lt;110,'Product 100-109'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;....&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;....&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Sep 2015 13:59:25 GMT</pubDate>
    <dc:creator>settu_periasamy</dc:creator>
    <dc:date>2015-09-16T13:59:25Z</dc:date>
    <item>
      <title>return value based on condition set</title>
      <link>https://community.qlik.com/t5/QlikView/return-value-based-on-condition-set/m-p/962212#M970362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to show a straight table with a column "Product Name",&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;available products are:&lt;/P&gt;&lt;P&gt;A. 1,2, 3.....30&amp;nbsp;&amp;nbsp; (30 different products from the same family)&lt;/P&gt;&lt;P&gt;B. and also products 100, 101, 102...109 (10 different products from the same family)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;C. and also products 110, 111, 112...119 (10 different products from the same family)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;D. and also products 120, 121, 122...129 (10 different products from the same family)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the client purchased Product from B family, show the name, if not,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;If the client purchased Product from C family, show the name, if not,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;If the client purchased Product from D family, show the name, if not,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;show nothing.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I create such a logic?&lt;/P&gt;&lt;P&gt;I use&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 13:19:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/return-value-based-on-condition-set/m-p/962212#M970362</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-16T13:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: return value based on condition set</title>
      <link>https://community.qlik.com/t5/QlikView/return-value-based-on-condition-set/m-p/962213#M970363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Len(Trim(Product)) = 2, 'A',&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Match(Product, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109), 'B',&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;If(Match(Product, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119), 'C', 'D')))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 13:24:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/return-value-based-on-condition-set/m-p/962213#M970363</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-16T13:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: return value based on condition set</title>
      <link>https://community.qlik.com/t5/QlikView/return-value-based-on-condition-set/m-p/962214#M970364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;cool,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can I return the specific product (not the family)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 13:32:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/return-value-based-on-condition-set/m-p/962214#M970364</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-16T13:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: return value based on condition set</title>
      <link>https://community.qlik.com/t5/QlikView/return-value-based-on-condition-set/m-p/962215#M970365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure what you mean?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 13:34:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/return-value-based-on-condition-set/m-p/962215#M970365</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-16T13:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: return value based on condition set</title>
      <link>https://community.qlik.com/t5/QlikView/return-value-based-on-condition-set/m-p/962216#M970366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry I wasn't clearer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to present the product name to the user,&lt;/P&gt;&lt;P&gt;according to the logic above&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="11.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/99146_11.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 13:54:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/return-value-based-on-condition-set/m-p/962216#M970366</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-16T13:54:23Z</dc:date>
    </item>
    <item>
      <title>Re: return value based on condition set</title>
      <link>https://community.qlik.com/t5/QlikView/return-value-based-on-condition-set/m-p/962217#M970367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you trying to do this in the front end of the application or backend?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For backend I would suggest creating a new column for Product Name using Product ID:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD [Product ID],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Product ' &amp;amp; &lt;SPAN style="font-size: 13.3333px;"&gt;[Product ID] as [Product Name]&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM Source;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 13:58:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/return-value-based-on-condition-set/m-p/962217#M970367</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-09-16T13:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: return value based on condition set</title>
      <link>https://community.qlik.com/t5/QlikView/return-value-based-on-condition-set/m-p/962218#M970368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be you can try the sunny's solution in opposite way..&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;If(Product&amp;lt;=30,'Product 1-30',&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Product&amp;gt;=100 and Product&amp;lt;110,'Product 100-109'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;....&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;....&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2015 13:59:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/return-value-based-on-condition-set/m-p/962218#M970368</guid>
      <dc:creator>settu_periasamy</dc:creator>
      <dc:date>2015-09-16T13:59:25Z</dc:date>
    </item>
  </channel>
</rss>

