<?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 Month order in list in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Month-order-in-list/m-p/465202#M173747</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a list box in which am showing months. I have two fields comming my load script for month - One has months names(Jan, Feb etc) and the other has numeric values ofr months(1,2 etc). In the list, am using the month name(Jan, Feb) but sorting by the month number to get them sorted correctly and it workes fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, when I slect a month in the list box, the order is gone. Any thoughts on how to fix this? Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 23 Feb 2013 04:08:13 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-02-23T04:08:13Z</dc:date>
    <item>
      <title>Month order in list</title>
      <link>https://community.qlik.com/t5/QlikView/Month-order-in-list/m-p/465202#M173747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a list box in which am showing months. I have two fields comming my load script for month - One has months names(Jan, Feb etc) and the other has numeric values ofr months(1,2 etc). In the list, am using the month name(Jan, Feb) but sorting by the month number to get them sorted correctly and it workes fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, when I slect a month in the list box, the order is gone. Any thoughts on how to fix this? Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2013 04:08:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-order-in-list/m-p/465202#M173747</guid>
      <dc:creator />
      <dc:date>2013-02-23T04:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: Month order in list</title>
      <link>https://community.qlik.com/t5/QlikView/Month-order-in-list/m-p/465203#M173748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so you must have used sort expression to sort the Month name by your Month Number..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use sort expressions as = sum ({1} Month number Field)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that will do it....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2013 04:12:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-order-in-list/m-p/465203#M173748</guid>
      <dc:creator>phaneendra_kunc</dc:creator>
      <dc:date>2013-02-23T04:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: Month order in list</title>
      <link>https://community.qlik.com/t5/QlikView/Month-order-in-list/m-p/465204#M173749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you - that did the trick. Can you please explain me how it works?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2013 04:30:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-order-in-list/m-p/465204#M173749</guid>
      <dc:creator />
      <dc:date>2013-02-23T04:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Month order in list</title>
      <link>https://community.qlik.com/t5/QlikView/Month-order-in-list/m-p/465205#M173750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is just a set statement...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 means ignore current selections.....&lt;/P&gt;&lt;P&gt;In your case if you choose any month name that will filters the Month number according to your selection...so for the rest of the months that number will be NULL/Invalid...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hit F1 and search for Set Analsysis...&lt;A class="active_link" name="kanchor1044"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;sum(&lt;/SPAN&gt; {$} Sales &lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;returns sales for the current selection, i.e. the same as sum(Sales). &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;sum(&lt;/SPAN&gt; {$1} Sales &lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;returns sales for the previous selection. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;sum(&lt;/SPAN&gt; {$_2} Sales &lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;returns sales for the 2nd next selection, i.e. two steps forward. Only relevant if you just made two &lt;SPAN class="Bold"&gt;Back&lt;/SPAN&gt; operations. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;sum(&lt;/SPAN&gt; {1} Sales &lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;returns total sales within the application, disregarding the selection but not the dimension. If used in a chart with e.g. Products as dimension, each product will get a different value. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;sum(&lt;/SPAN&gt; {1} &lt;SPAN class="Bold"&gt;Total&lt;/SPAN&gt; Sales &lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;returns total sales within the application, disregarding both selection and dimension. I.e. the same as sum(&lt;SPAN class="Bold"&gt;All&lt;/SPAN&gt; Sales). &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;sum(&lt;/SPAN&gt; {BM01} Sales &lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;returns sales for the bookmark BM01. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;sum(&lt;/SPAN&gt; {MyBookMark} Sales&lt;SPAN class="Bold"&gt; )&lt;/SPAN&gt;&lt;BR /&gt;returns sales for the bookmark MyBookMark. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;sum(&lt;/SPAN&gt;{Server\BM01} Sales&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;returns the sales for the server bookmark BM01. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;sum(&lt;/SPAN&gt;{Document\MyBookmark}Sales&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt;&lt;BR /&gt;returns the sales for the document bookmark MyBookmark. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And mark this thread as answered if the solution works for you. so that community people will know where to find the answers for similar answers...!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Happy Learning &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2013 04:42:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-order-in-list/m-p/465205#M173750</guid>
      <dc:creator>phaneendra_kunc</dc:creator>
      <dc:date>2013-02-23T04:42:58Z</dc:date>
    </item>
  </channel>
</rss>

