<?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: Problem with MIN between user field selection in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Problem-with-MIN-between-user-field-selection/m-p/125763#M8745</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After some testing i found it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Min({&amp;lt;year={"&amp;gt;=$(=MIN(year))"}&amp;gt;*&amp;lt;year={"&amp;lt;=$(=MAX(year))"}&amp;gt;}year)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should be the intersection operator or else global minimums are shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your attention.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Aug 2018 15:14:37 GMT</pubDate>
    <dc:creator>thiago_miranda</dc:creator>
    <dc:date>2018-08-28T15:14:37Z</dc:date>
    <item>
      <title>Problem with MIN between user field selection</title>
      <link>https://community.qlik.com/t5/App-Development/Problem-with-MIN-between-user-field-selection/m-p/125760#M8742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, i have the following data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;table:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD * INLINE&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;id, name, year&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;1, a, 2015&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;2, a, 2016&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;3, a, 2017&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;4, a, 2018&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;5, b, 2016&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;6, b, 2017&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;7, b, 2018&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;8, c, 2017&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;9, c, 2018&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;When the User filters by year:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="filter.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/211895_filter.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="a890944236c44625b295163c6192f256.png" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/211897_a890944236c44625b295163c6192f256.png" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;P&gt;what i need is the minimal value in the User selection interval:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;a 2015&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;b 2016&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;c 2017&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't use {1}&amp;nbsp; because it ignores the user selection. I tried &lt;EM&gt;$&amp;lt;year={$(=(MIN(year))}&amp;gt;&lt;/EM&gt; but i got nulls for &lt;STRONG&gt;b&lt;/STRONG&gt; and &lt;STRONG&gt;c&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank you.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2018 18:46:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Problem-with-MIN-between-user-field-selection/m-p/125760#M8742</guid>
      <dc:creator>thiago_miranda</dc:creator>
      <dc:date>2018-08-27T18:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with MIN between user field selection</title>
      <link>https://community.qlik.com/t5/App-Development/Problem-with-MIN-between-user-field-selection/m-p/125761#M8743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thiago,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could try somenthing like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Min(Aggr(Year),name))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FirstSortedvalue(Year,Aggr(Year,name))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 00:33:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Problem-with-MIN-between-user-field-selection/m-p/125761#M8743</guid>
      <dc:creator>Thiago_Justen_</dc:creator>
      <dc:date>2018-08-28T00:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with MIN between user field selection</title>
      <link>https://community.qlik.com/t5/App-Development/Problem-with-MIN-between-user-field-selection/m-p/125762#M8744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried your suggestions and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FirstSortedvalue(year,Aggr(MIN(year),name)) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but got the same result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 15:00:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Problem-with-MIN-between-user-field-selection/m-p/125762#M8744</guid>
      <dc:creator>thiago_miranda</dc:creator>
      <dc:date>2018-08-28T15:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with MIN between user field selection</title>
      <link>https://community.qlik.com/t5/App-Development/Problem-with-MIN-between-user-field-selection/m-p/125763#M8745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After some testing i found it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Min({&amp;lt;year={"&amp;gt;=$(=MIN(year))"}&amp;gt;*&amp;lt;year={"&amp;lt;=$(=MAX(year))"}&amp;gt;}year)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should be the intersection operator or else global minimums are shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your attention.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 15:14:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Problem-with-MIN-between-user-field-selection/m-p/125763#M8745</guid>
      <dc:creator>thiago_miranda</dc:creator>
      <dc:date>2018-08-28T15:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with MIN between user field selection</title>
      <link>https://community.qlik.com/t5/App-Development/Problem-with-MIN-between-user-field-selection/m-p/125764#M8746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great man!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Aug 2018 16:37:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Problem-with-MIN-between-user-field-selection/m-p/125764#M8746</guid>
      <dc:creator>Thiago_Justen_</dc:creator>
      <dc:date>2018-08-28T16:37:55Z</dc:date>
    </item>
  </channel>
</rss>

