<?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 How to display informations in range format in Qlik Learning Discussions</title>
    <link>https://community.qlik.com/t5/Qlik-Learning-Discussions/How-to-display-informations-in-range-format/m-p/823230#M2969</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table that contains the students notes. for example:&lt;/P&gt;&lt;P&gt;Name Note&lt;/P&gt;&lt;P&gt;Jose&amp;nbsp; 80&lt;/P&gt;&lt;P&gt;Carlos 60&lt;/P&gt;&lt;P&gt;Miguel 90&lt;/P&gt;&lt;P&gt;Manuel 100&lt;/P&gt;&lt;P&gt;Pedro 40 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to take out the next statistcs:&lt;/P&gt;&lt;P&gt;between 0 and 50: how much&lt;/P&gt;&lt;P&gt;between 50 and 70: how much, etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm thinking create an inline table with description ranges and in the qvw file validate using the if statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone can help me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Nov 2014 22:18:38 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-11-12T22:18:38Z</dc:date>
    <item>
      <title>How to display informations in range format</title>
      <link>https://community.qlik.com/t5/Qlik-Learning-Discussions/How-to-display-informations-in-range-format/m-p/823230#M2969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table that contains the students notes. for example:&lt;/P&gt;&lt;P&gt;Name Note&lt;/P&gt;&lt;P&gt;Jose&amp;nbsp; 80&lt;/P&gt;&lt;P&gt;Carlos 60&lt;/P&gt;&lt;P&gt;Miguel 90&lt;/P&gt;&lt;P&gt;Manuel 100&lt;/P&gt;&lt;P&gt;Pedro 40 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to take out the next statistcs:&lt;/P&gt;&lt;P&gt;between 0 and 50: how much&lt;/P&gt;&lt;P&gt;between 50 and 70: how much, etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm thinking create an inline table with description ranges and in the qvw file validate using the if statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone can help me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 22:18:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Learning-Discussions/How-to-display-informations-in-range-format/m-p/823230#M2969</guid>
      <dc:creator />
      <dc:date>2014-11-12T22:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to display informations in range format</title>
      <link>https://community.qlik.com/t5/Qlik-Learning-Discussions/How-to-display-informations-in-range-format/m-p/823231#M2970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe with intervalmatch function&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;IMG alt="1.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/71124_1.png" style="width: auto; height: auto;" /&gt;&lt;BR /&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;&lt;EM&gt;b:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load *, from &amp;amp; ' to ' &amp;amp; to as desc inline [&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;from, to&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;0,&amp;nbsp; 30&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;31, 50&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;51,99&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;100,200&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;a:&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;name, value&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Jose,&amp;nbsp; 80&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Carlos, 60&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Miguel, 90&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Manuel, 100&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Pedro, 40&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;IntervalMatch (value)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;load&amp;nbsp; from, to Resident b;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 22:25:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Learning-Discussions/How-to-display-informations-in-range-format/m-p/823231#M2970</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-11-12T22:25:50Z</dc:date>
    </item>
  </channel>
</rss>

