<?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 Range of Values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Range-of-Values/m-p/198358#M57680</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a database with columns A, B and C.&lt;/P&gt;&lt;P&gt;Column A is year, Column C is expenses, and B is the name of the expenses;&lt;/P&gt;&lt;P&gt;Im making a chart with sum ( {$&amp;lt;year=[2011]&amp;gt;} expense)/ sum ( {$&amp;lt;year=[2010]&amp;gt;} expense) -1 .&lt;/P&gt;&lt;P&gt;Now if only want to see the values of variation higher than a value that i will select in a variable, how can i do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I made a variable that i called Variation and then tried in the dimension to make this: if ( (sum ( {$&amp;lt;year=[2011]&amp;gt;} expense)/ sum ( {$&amp;lt;year=[2010]&amp;gt;} expense) -1)&amp;gt;Variation/100, Dimension that i select, null () )&lt;/P&gt;&lt;P&gt;It gives me an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Feb 2011 17:55:00 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-02-02T17:55:00Z</dc:date>
    <item>
      <title>Range of Values</title>
      <link>https://community.qlik.com/t5/QlikView/Range-of-Values/m-p/198358#M57680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a database with columns A, B and C.&lt;/P&gt;&lt;P&gt;Column A is year, Column C is expenses, and B is the name of the expenses;&lt;/P&gt;&lt;P&gt;Im making a chart with sum ( {$&amp;lt;year=[2011]&amp;gt;} expense)/ sum ( {$&amp;lt;year=[2010]&amp;gt;} expense) -1 .&lt;/P&gt;&lt;P&gt;Now if only want to see the values of variation higher than a value that i will select in a variable, how can i do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I made a variable that i called Variation and then tried in the dimension to make this: if ( (sum ( {$&amp;lt;year=[2011]&amp;gt;} expense)/ sum ( {$&amp;lt;year=[2010]&amp;gt;} expense) -1)&amp;gt;Variation/100, Dimension that i select, null () )&lt;/P&gt;&lt;P&gt;It gives me an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2011 17:55:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Range-of-Values/m-p/198358#M57680</guid>
      <dc:creator />
      <dc:date>2011-02-02T17:55:00Z</dc:date>
    </item>
    <item>
      <title>Range of Values</title>
      <link>https://community.qlik.com/t5/QlikView/Range-of-Values/m-p/198359#M57681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Use the same code in Expression .It will work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ( (sum ( {$&amp;lt;year=[2011]&amp;gt;} expense)/ sum ( {$&amp;lt;year=[2010]&amp;gt;} expense) -1)&amp;gt;Variation/100,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(sum ( {$&amp;lt;year=[2011]&amp;gt;} expense)/ sum ( {$&amp;lt;year=[2010]&amp;gt;} expense) -1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;In the above code we are replacing the dimension with the expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Feb 2011 05:19:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Range-of-Values/m-p/198359#M57681</guid>
      <dc:creator>deepakk</dc:creator>
      <dc:date>2011-02-03T05:19:45Z</dc:date>
    </item>
    <item>
      <title>Range of Values</title>
      <link>https://community.qlik.com/t5/QlikView/Range-of-Values/m-p/198360#M57682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try using Set Analysis, similar to the example below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Sum({$&amp;lt;DimensionToSelect={"=Sum({$&amp;lt;year=[2011]&amp;gt;}expense)/Sum({$&amp;lt;year=[2010]&amp;gt;}expense)-1)&amp;gt;$(Variation)/100"}&amp;gt;}FieldToSum)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may need to adjust this sightly and you will need to specify the 'DimensionToSelect' and the 'FieldToSum'.&lt;/P&gt;&lt;P&gt;This should filter the list of values in 'DimensionToSelect' to only those where you're expression is greater than Variation/100&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2011 00:21:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Range-of-Values/m-p/198360#M57682</guid>
      <dc:creator />
      <dc:date>2011-02-04T00:21:31Z</dc:date>
    </item>
    <item>
      <title>Range of Values</title>
      <link>https://community.qlik.com/t5/QlikView/Range-of-Values/m-p/198361#M57683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;What should i put in the fiel to sum?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2011 00:28:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Range-of-Values/m-p/198361#M57683</guid>
      <dc:creator />
      <dc:date>2011-02-04T00:28:55Z</dc:date>
    </item>
    <item>
      <title>Range of Values</title>
      <link>https://community.qlik.com/t5/QlikView/Range-of-Values/m-p/198362#M57684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The 'FieldToSum' should be the value you would like plotted in your chart. Perhaps 'expense'?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2011 00:33:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Range-of-Values/m-p/198362#M57684</guid>
      <dc:creator />
      <dc:date>2011-02-04T00:33:29Z</dc:date>
    </item>
    <item>
      <title>Range of Values</title>
      <link>https://community.qlik.com/t5/QlikView/Range-of-Values/m-p/198363#M57685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin:0cm 0cm 10pt;tab-stops:129.75pt;"&gt;Thanks for your help.&lt;/P&gt;&lt;P style="margin:0cm 0cm 10pt;tab-stops:129.75pt;"&gt;Perhaps u can help me in something more easier, i hope.&lt;/P&gt;&lt;P style="margin:0cm 0cm 10pt;tab-stops:129.75pt;"&gt;i'm making a few reports in qlikview and i'm debating with a problem of formatting colors and appearance in Lists and Multiple Selection boxes:&lt;/P&gt;&lt;P style="margin:0cm 0cm 10pt;tab-stops:129.75pt;"&gt;I don't how where to change the colors of the text inside a List:&lt;/P&gt;&lt;P style="margin:0cm 0cm 10pt;tab-stops:129.75pt;"&gt;In a multiple selection, if u pre-select the grade style, where do we change de position of the text in the first column, the colors of the respectivo text and tab.&lt;/P&gt;&lt;P style="margin:0cm 0cm 10pt;tab-stops:129.75pt;"&gt;These problems that im having in all the docs that im doing gives no chance to completely format the tex with the same color.&lt;/P&gt;&lt;P style="margin:0cm 0cm 10pt;tab-stops:129.75pt;"&gt;The problem in the multiple selection box its still critical because and can not change the formating of the text in the first columm.&lt;/P&gt;&lt;P style="margin:0cm 0cm 10pt;tab-stops:129.75pt;"&gt;&lt;/P&gt;&lt;P style="margin:0cm 0cm 10pt;tab-stops:129.75pt;"&gt;Can u help me?&lt;/P&gt;&lt;P style="margin:0cm 0cm 10pt;tab-stops:129.75pt;"&gt;&lt;/P&gt;&lt;P style="margin:0cm 0cm 10pt;tab-stops:129.75pt;"&gt;Best regards,&lt;/P&gt;&lt;P style="margin:0cm 0cm 10pt;tab-stops:129.75pt;"&gt;Eliano Marques&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Feb 2011 18:21:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Range-of-Values/m-p/198363#M57685</guid>
      <dc:creator />
      <dc:date>2011-02-05T18:21:07Z</dc:date>
    </item>
    <item>
      <title>Range of Values</title>
      <link>https://community.qlik.com/t5/QlikView/Range-of-Values/m-p/198364#M57686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eliano,&lt;/P&gt;&lt;P&gt;You can change the colour of text in a listbox but the process is quite long. You need to create a theme based on your listbox and then manually edit the TextColor&amp;gt;PrimaryCol&amp;gt;Col properties of theme (using notepad or an xml editor). Once you have done this you need to re-apply the theme and change the 'Selection Style Override' property on the Presentation tab of the listbox to be one of the following - 'Windows Checkboxes', 'Corner Tag', 'LED', 'LED Checkboxes'. Unfortunately this will not work with the 'QlikView Classic' style.&lt;/P&gt;&lt;P&gt;I think the same applies to a multi box but I'm not sure if you can change the text alignment for multi-box labels.&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Feb 2011 14:02:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Range-of-Values/m-p/198364#M57686</guid>
      <dc:creator />
      <dc:date>2011-02-07T14:02:41Z</dc:date>
    </item>
  </channel>
</rss>

