<?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: Sort a chart by dimension in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Sort-a-chart-by-dimension/m-p/1506293#M509435</link>
    <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46628"&gt;@sunny_talwar&lt;/a&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/22949"&gt;@tresB&lt;/a&gt;&amp;nbsp;- Will that New Community, Will make changes the flag? Seems, You and Sunny together got &lt;STRONG&gt;Correct Answer?&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 14 Nov 2018 13:50:40 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2018-11-14T13:50:40Z</dc:date>
    <item>
      <title>Sort a chart by dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-a-chart-by-dimension/m-p/1506025#M509432</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I need help to sort my chart by the dimension, but on the labal ? is it possible ? any workaround ?&lt;/P&gt;&lt;P&gt;as you can see in my attached exemple this is not very easy.&lt;/P&gt;&lt;P&gt;I would like to have a sort like this:&lt;/P&gt;&lt;P&gt;Day &amp;lt;=3, Day 3-5, Day 5-7, Day 7-10, Day 10-12 and Day sup 12.&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;</description>
      <pubDate>Wed, 14 Nov 2018 10:50:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-a-chart-by-dimension/m-p/1506025#M509432</guid>
      <dc:creator>patrou38</dc:creator>
      <dc:date>2018-11-14T10:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Sort a chart by dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-a-chart-by-dimension/m-p/1506061#M509433</link>
      <description>&lt;P&gt;You need to modify the expression a bit like:&lt;/P&gt;&lt;P&gt;=if(Day&amp;lt;=3 ,&lt;STRONG&gt;Dual('&lt;/STRONG&gt;Day &amp;lt;=3',&lt;STRONG&gt;0&lt;/STRONG&gt;),&lt;BR /&gt;if(Day&amp;gt;=3 and Day&amp;lt;5,dual&lt;STRONG&gt;(&lt;/STRONG&gt;'Day 3-5',1),&lt;BR /&gt;if(Day&amp;gt;=5 and Day&amp;lt;7,dual('Day 5-7',2),&lt;BR /&gt;if(Day&amp;gt;=7 and Day&amp;lt;10,dual('Day 7-10',3),&lt;BR /&gt;if(Day&amp;gt;=10 and Day&amp;lt;12,dual('Day 10-12',4),&lt;BR /&gt;if(Day&amp;gt;=12 , &lt;STRONG&gt;Dual(&lt;/STRONG&gt;'Day sup 12',&lt;STRONG&gt;5&lt;/STRONG&gt;)))))))&lt;/P&gt;</description>
      <pubDate>Wed, 14 Nov 2018 11:26:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-a-chart-by-dimension/m-p/1506061#M509433</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2018-11-14T11:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: Sort a chart by dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-a-chart-by-dimension/m-p/1506144#M509434</link>
      <description>&lt;P&gt;You might also want to simplify your if statement by using something like this&lt;/P&gt;&lt;PRE&gt;=If(Day &amp;lt;= 3, Dual('Day &amp;lt;=3', 0),
 If(Day &amp;lt; 5, Dual('Day 3-5',1),
 If(Day &amp;lt; 7, Dual('Day 5-7',2),
 If(Day &amp;lt; 10, Dual('Day 7-10',3),
 If(Day &amp;lt; 12, Dual('Day 10-12',4), Dual('Day sup 12', 5))))))&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Nov 2018 12:19:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-a-chart-by-dimension/m-p/1506144#M509434</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-11-14T12:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: Sort a chart by dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-a-chart-by-dimension/m-p/1506293#M509435</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46628"&gt;@sunny_talwar&lt;/a&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/22949"&gt;@tresB&lt;/a&gt;&amp;nbsp;- Will that New Community, Will make changes the flag? Seems, You and Sunny together got &lt;STRONG&gt;Correct Answer?&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Nov 2018 13:50:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-a-chart-by-dimension/m-p/1506293#M509435</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-11-14T13:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: Sort a chart by dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-a-chart-by-dimension/m-p/1506311#M509436</link>
      <description>&lt;P&gt;Yes, it appears that multiple responses can be marked as the correct response. It seems to be similar to how Helpful responses used to work in JIVE.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Nov 2018 14:06:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-a-chart-by-dimension/m-p/1506311#M509436</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-11-14T14:06:30Z</dc:date>
    </item>
  </channel>
</rss>

