<?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: Qlik Sense - Field Sorting in Filter Panel in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/1997291#M82590</link>
    <description>&lt;P&gt;Hi again,&lt;/P&gt;
&lt;P&gt;One more thing that a just realize reviewing your post.&lt;/P&gt;
&lt;P&gt;What o said applies to filter object or any chart object.&lt;/P&gt;
&lt;P&gt;for the filters in the upper filter panel is default, you can’t change that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;best,&lt;/P&gt;
&lt;P class="p1"&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN class="s1"&gt;Help users find answers! Don't forget to mark a solution that worked for you &amp;amp; to smash the like button! &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Oct 2022 20:34:15 GMT</pubDate>
    <dc:creator>RafaelBarrios</dc:creator>
    <dc:date>2022-10-26T20:34:15Z</dc:date>
    <item>
      <title>Qlik Sense - Field Sorting in Filter Panel</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/1997111#M82569</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm having issues with sorting a field in the 'Filter Panel'.&amp;nbsp; For example, if I add a field called 'Year Month' to my dashboard with a filter object (sort 1)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="joshabbott_1-1666790086613.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/92223i6F7225F9BFBA757F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="joshabbott_1-1666790086613.png" alt="joshabbott_1-1666790086613.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can filter by an expression to filter the field.&amp;nbsp; But once I make a selection and the field moves into the 'Filter Panel', I lose the sorting of this field (sort 2).&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="joshabbott_2-1666790098076.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/92224i5BD5B42C360BE71E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="joshabbott_2-1666790098076.png" alt="joshabbott_2-1666790098076.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Can anyone help me with a way to filter a field once it is in the filter panel?&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;Josh&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 13:15:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/1997111#M82569</guid>
      <dc:creator>joshabbott</dc:creator>
      <dc:date>2022-10-26T13:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Field Sorting in Filter Panel</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/1997276#M82585</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/107"&gt;@joshabbott&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That is because your Year Month field is a text field and not a date field.&lt;/P&gt;
&lt;P&gt;I guess that in script you did something like this to create the field:&lt;/P&gt;
&lt;P&gt;year(date_field) &amp;amp;&lt;STRONG&gt;'&amp;nbsp;'&lt;/STRONG&gt;&amp;amp; month(date_field) as [Year Month]&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;if so, you should try some date function like&lt;/P&gt;
&lt;P&gt;Monthname(date_field) as&amp;nbsp;&lt;SPAN&gt;[Year Month]&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;or&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Date(date_field,&lt;STRONG&gt;'&lt;/STRONG&gt;YYYY MMM&lt;STRONG&gt;'&lt;/STRONG&gt;) as&amp;nbsp;[Year Month]&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hope this helps.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN class="s1"&gt;Help users find answers! Don't forget to mark a solution that worked for you &amp;amp; to smash the like button! &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 19:15:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/1997276#M82585</guid>
      <dc:creator>RafaelBarrios</dc:creator>
      <dc:date>2022-10-26T19:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Field Sorting in Filter Panel</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/1997282#M82586</link>
      <description>&lt;P&gt;Thank you for your reply!&amp;nbsp; &amp;nbsp;So it is sorting it alphabetically by default?&amp;nbsp; Do I not have any way that I can change the way it sorts in this filter panel or is it always alphabetically?&amp;nbsp; Even if I did make this a date, it would sort the dates in ascending order, but I'd want it in descending order.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 19:49:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/1997282#M82586</guid>
      <dc:creator>joshabbott</dc:creator>
      <dc:date>2022-10-26T19:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Field Sorting in Filter Panel</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/1997290#M82589</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/107"&gt;@joshabbott&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, it is default for text field&lt;/P&gt;
&lt;P&gt;for numeric or date, the default would be numerical value.&lt;/P&gt;
&lt;P&gt;in any case, for every object you have a section to specify the sorting criteria (text, numeric value, custom order) and also to set ascending or descending.&lt;/P&gt;
&lt;P&gt;this video is for an old version but it’s similar&lt;/P&gt;
&lt;P&gt;&lt;A href="https://youtu.be/bSN7z04pFqM" target="_blank"&gt;https://youtu.be/bSN7z04pFqM&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;hope this helps.&lt;/P&gt;
&lt;P&gt;best,&lt;/P&gt;
&lt;P class="p1"&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN class="s1"&gt;Help users find answers! Don't forget to mark a solution that worked for you &amp;amp; to smash the like button! &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 20:28:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/1997290#M82589</guid>
      <dc:creator>RafaelBarrios</dc:creator>
      <dc:date>2022-10-26T20:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Field Sorting in Filter Panel</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/1997291#M82590</link>
      <description>&lt;P&gt;Hi again,&lt;/P&gt;
&lt;P&gt;One more thing that a just realize reviewing your post.&lt;/P&gt;
&lt;P&gt;What o said applies to filter object or any chart object.&lt;/P&gt;
&lt;P&gt;for the filters in the upper filter panel is default, you can’t change that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;best,&lt;/P&gt;
&lt;P class="p1"&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN class="s1"&gt;Help users find answers! Don't forget to mark a solution that worked for you &amp;amp; to smash the like button! &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 20:34:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/1997291#M82590</guid>
      <dc:creator>RafaelBarrios</dc:creator>
      <dc:date>2022-10-26T20:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Field Sorting in Filter Panel</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/1997293#M82591</link>
      <description>&lt;P&gt;I'm sorry, I stated my reply wrong.&amp;nbsp; So in the filter panel only (not an object on the dashboard) I have no control of the sort order?&amp;nbsp; It will always be descending based on the data type, I can't make it ascending?&amp;nbsp; The dimension value already selected in the filter panel is what I'm frustrated about not being able to change.&amp;nbsp; I have a user that makes a selection from a filter object on the dashboard, but then is trying to change the filter value from the filter panel and it is always sorted different, so they called this out to us.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 20:37:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/1997293#M82591</guid>
      <dc:creator>joshabbott</dc:creator>
      <dc:date>2022-10-26T20:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Field Sorting in Filter Panel</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/1997297#M82592</link>
      <description>&lt;P&gt;Now I got it.&lt;/P&gt;
&lt;P&gt;sorry I misunderstood&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this is working as designed … sorry I can not help you with that.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Official-Support-Articles/In-the-selection-bar-selection-list-sequence-order-is-not-as-per/ta-p/1796966" target="_blank"&gt;https://community.qlik.com/t5/Official-Support-Articles/In-the-selection-bar-selection-list-sequence-order-is-not-as-per/ta-p/1796966&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;best.&lt;/P&gt;
&lt;P class="p1"&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN class="s1"&gt;Help users find answers! Don't forget to mark a solution that worked for you &amp;amp; to smash the like button! &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2022 20:45:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/1997297#M82592</guid>
      <dc:creator>RafaelBarrios</dc:creator>
      <dc:date>2022-10-26T20:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Field Sorting in Filter Panel</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/2000834#M82884</link>
      <description>&lt;P&gt;I did find a fix to my problem.&amp;nbsp; I found that the default sort in the filter pane is ascending order.&amp;nbsp; I wrapped a dual around my year month field and put the numeric value of the Year and Month as the second parameter:&lt;/P&gt;
&lt;P&gt;Dual([YearMonthField],DateNum) as [Year Month F4]&lt;/P&gt;
&lt;P&gt;When I did this, it sorted my Year Month F4 field in the filter pane ascending, or oldest to newest.&amp;nbsp; I needed it flipped to newest date first, down to the oldest date, so I adjusted the numeric value to make it the negative value of the date:&lt;/P&gt;
&lt;P&gt;Dual([YearMonthField],DateNum*-1) as [Year Month F4]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This gave me the newest year/month values at the top down to the oldest.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 17:47:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/2000834#M82884</guid>
      <dc:creator>joshabbott</dc:creator>
      <dc:date>2022-11-04T17:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense - Field Sorting in Filter Panel</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/2535027#M108491</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/107"&gt;@joshabbott&lt;/a&gt;&amp;nbsp; Did you got ths solution for this ?&lt;/P&gt;</description>
      <pubDate>Mon, 03 Nov 2025 11:11:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Field-Sorting-in-Filter-Panel/m-p/2535027#M108491</guid>
      <dc:creator>Karim_Khan</dc:creator>
      <dc:date>2025-11-03T11:11:22Z</dc:date>
    </item>
  </channel>
</rss>

