<?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: Show Part (as a dimension) corresponding to Min Value in a Pivot/Straight Table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Show-Part-as-a-dimension-corresponding-to-Min-Value-in-a-Pivot/m-p/1623577#M63354</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If in the straight table, we use Dt and Part as dimensions and&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;if(&lt;BR /&gt;sum(Value)=&lt;BR /&gt;min(Total &amp;lt;Dt&amp;gt; aggr(sum(Value),Dt,Part,Group)),&lt;BR /&gt;sum(Value),&lt;BR /&gt;0&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;" as the measure with suppress zero value. Would it work?&lt;/P&gt;</description>
    <pubDate>Fri, 13 Sep 2019 07:38:38 GMT</pubDate>
    <dc:creator>karthiksrqv</dc:creator>
    <dc:date>2019-09-13T07:38:38Z</dc:date>
    <item>
      <title>Show Part (as a dimension) corresponding to Min Value in a Pivot/Straight Table</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Part-as-a-dimension-corresponding-to-Min-Value-in-a-Pivot/m-p/1623357#M63349</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="clipboard_image_0.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/19097i46AECAE74E42685F/image-size/large?v=v2&amp;amp;px=999" role="button" title="clipboard_image_0.png" alt="clipboard_image_0.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In the 2nd straight table, I want to display the dates and the Min Value across all parts for that date and the Part corresponding to the Min Value for that date.&lt;/P&gt;&lt;P&gt;I am able to do it as shown above but the Parts are displayed as Measures and thus are not selectable. I would like to click on a particular part in the table (highlighted in yellow) thus filtering the dataset to that part.&lt;/P&gt;&lt;P&gt;Is this possible?&lt;/P&gt;&lt;P&gt;QVF is attached.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2021 08:06:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Part-as-a-dimension-corresponding-to-Min-Value-in-a-Pivot/m-p/1623357#M63349</guid>
      <dc:creator>mborsadw</dc:creator>
      <dc:date>2021-04-02T08:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: Show Part (as a dimension) corresponding to Min Value in a Pivot/Straight Table</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Part-as-a-dimension-corresponding-to-Min-Value-in-a-Pivot/m-p/1623372#M63350</link>
      <description>&lt;P&gt;create&amp;nbsp; a dimension as below&lt;/P&gt;&lt;P&gt;=aggr(firstsortedvalue(Part, Value), Dt)&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 17:29:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Part-as-a-dimension-corresponding-to-Min-Value-in-a-Pivot/m-p/1623372#M63350</guid>
      <dc:creator>asinha1991</dc:creator>
      <dc:date>2019-09-12T17:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: Show Part (as a dimension) corresponding to Min Value in a Pivot/Straight Table</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Part-as-a-dimension-corresponding-to-Min-Value-in-a-Pivot/m-p/1623383#M63351</link>
      <description>&lt;P&gt;&lt;IMG src="https://community.qlik.com/t5/image/serverpage/image-id/19105iCD5E5194F3C1291C/image-size/large?v=1.0&amp;amp;px=-1" border="0" title="clipboard_image_0.png" alt="clipboard_image_0.png" /&gt;&lt;/P&gt;&lt;P&gt;I do see the part numbers as dimensions with your approach. But when I select the part number, it makes a selection on Dates as seen in the above screenshot.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 17:50:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Part-as-a-dimension-corresponding-to-Min-Value-in-a-Pivot/m-p/1623383#M63351</guid>
      <dc:creator>mborsadw</dc:creator>
      <dc:date>2019-09-12T17:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: Show Part (as a dimension) corresponding to Min Value in a Pivot/Straight Table</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Part-as-a-dimension-corresponding-to-Min-Value-in-a-Pivot/m-p/1623429#M63352</link>
      <description>&lt;P&gt;This selects both dt and part&lt;/P&gt;&lt;P&gt;=if(aggr({1}rank(-sum(Value)),Dt,Part)=1,Part)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hopefully there is a better way&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 20:17:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Part-as-a-dimension-corresponding-to-Min-Value-in-a-Pivot/m-p/1623429#M63352</guid>
      <dc:creator>asinha1991</dc:creator>
      <dc:date>2019-09-12T20:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: Show Part (as a dimension) corresponding to Min Value in a Pivot/Straight Table</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Part-as-a-dimension-corresponding-to-Min-Value-in-a-Pivot/m-p/1623439#M63353</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46628"&gt;@sunny_talwar&lt;/a&gt;&amp;nbsp;any other approach?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2019 20:58:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Part-as-a-dimension-corresponding-to-Min-Value-in-a-Pivot/m-p/1623439#M63353</guid>
      <dc:creator>mborsadw</dc:creator>
      <dc:date>2019-09-12T20:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Show Part (as a dimension) corresponding to Min Value in a Pivot/Straight Table</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Part-as-a-dimension-corresponding-to-Min-Value-in-a-Pivot/m-p/1623577#M63354</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If in the straight table, we use Dt and Part as dimensions and&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;if(&lt;BR /&gt;sum(Value)=&lt;BR /&gt;min(Total &amp;lt;Dt&amp;gt; aggr(sum(Value),Dt,Part,Group)),&lt;BR /&gt;sum(Value),&lt;BR /&gt;0&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;" as the measure with suppress zero value. Would it work?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Sep 2019 07:38:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Part-as-a-dimension-corresponding-to-Min-Value-in-a-Pivot/m-p/1623577#M63354</guid>
      <dc:creator>karthiksrqv</dc:creator>
      <dc:date>2019-09-13T07:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: Show Part (as a dimension) corresponding to Min Value in a Pivot/Straight Table</title>
      <link>https://community.qlik.com/t5/App-Development/Show-Part-as-a-dimension-corresponding-to-Min-Value-in-a-Pivot/m-p/1623581#M63355</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Have incorporated the logic in the load script, hope this helps&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shashi&lt;/P&gt;</description>
      <pubDate>Fri, 13 Sep 2019 07:45:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Show-Part-as-a-dimension-corresponding-to-Min-Value-in-a-Pivot/m-p/1623581#M63355</guid>
      <dc:creator>shdhara_zyme</dc:creator>
      <dc:date>2019-09-13T07:45:20Z</dc:date>
    </item>
  </channel>
</rss>

