<?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:Bar Chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Re-Bar-Chart/m-p/85308#M761978</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;In bar chart creation&lt;/P&gt;&lt;P&gt;for the users&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if([TOP 10 USERS] &amp;gt;= 25,Green(128),&lt;/P&gt;&lt;P&gt;if([TOP 10 USERS] &amp;gt;= 10 and [TOP 10 USERS] &amp;lt;= 25,Yellow(128),&lt;/P&gt;&lt;P&gt;if([TOP 10 USERS] &amp;gt;= 5 and [TOP 10 USERS] &amp;lt;= 10,DarkGray(128),&lt;/P&gt;&lt;P&gt;)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;getting error&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>t_vijay_qlik</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Re:Bar Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Re-Bar-Chart/m-p/85308#M761978</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;In bar chart creation&lt;/P&gt;&lt;P&gt;for the users&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if([TOP 10 USERS] &amp;gt;= 25,Green(128),&lt;/P&gt;&lt;P&gt;if([TOP 10 USERS] &amp;gt;= 10 and [TOP 10 USERS] &amp;lt;= 25,Yellow(128),&lt;/P&gt;&lt;P&gt;if([TOP 10 USERS] &amp;gt;= 5 and [TOP 10 USERS] &amp;lt;= 10,DarkGray(128),&lt;/P&gt;&lt;P&gt;)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;getting error&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Re-Bar-Chart/m-p/85308#M761978</guid>
      <dc:creator>t_vijay_qlik</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re:Bar Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Re-Bar-Chart/m-p/85309#M761979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Isn't Top 10 users going to be 10 values?&lt;BR /&gt;I am not sure what you are trying to accomplish here, can you give us an example maybe? What countries should be what color in your Capture.png? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another thing is that in your expression the value 25 will be green and yellow as well as 10 will be yellow and darkgray. If you use &amp;gt;= in one if statement, you should not use &amp;lt;= in the else.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 01:35:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Re-Bar-Chart/m-p/85309#M761979</guid>
      <dc:creator>Wlad_Masi</dc:creator>
      <dc:date>2018-07-31T01:35:58Z</dc:date>
    </item>
    <item>
      <title>Re:Bar Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Re-Bar-Chart/m-p/85310#M761980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First you need to change the order of the 'IF' Condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if([TOP 10 USERS] &amp;gt;= 5 and [TOP 10 USERS] &amp;lt;= 10,DarkGray(128),&lt;/P&gt;&lt;P&gt;if([TOP 10 USERS] &amp;gt;= 10 and [TOP 10 USERS] &amp;lt;= 25,Yellow(128),&lt;/P&gt;&lt;P&gt;if([TOP 10 USERS] &amp;gt;= 25,Green(128)&lt;/P&gt;&lt;P&gt;)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second, as you are formatting values to '%' format use this below expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;if([TOP 10 USERS] &amp;gt;= .05 and [TOP 10 USERS] &amp;lt;= .10,DarkGray(128),&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;if([TOP 10 USERS] &amp;gt;= .10 and [TOP 10 USERS] &amp;lt;= .25,Yellow(128),&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;if([TOP 10 USERS] &amp;gt;= .25,Green(128)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;)))&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;It will be good, if you can share a sample application.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Thanks,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Sibin Jacob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 03:51:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Re-Bar-Chart/m-p/85310#M761980</guid>
      <dc:creator>sibin_jacob</dc:creator>
      <dc:date>2018-07-31T03:51:57Z</dc:date>
    </item>
    <item>
      <title>Re:Bar Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Re-Bar-Chart/m-p/85311#M761981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The color code is not full filled by expression. What you want to achieve using (128). First try normal &lt;STRONG&gt;Green()&lt;/STRONG&gt; instead &lt;STRONG&gt;Green(128) like&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;if([TOP 10 USERS] &amp;gt;= 25,Green(),&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;if([TOP 10 USERS] &amp;gt;= 10 and [TOP 10 USERS] &amp;lt;= 25,Yellow(),&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;if([TOP 10 USERS] &amp;gt;= 5 and [TOP 10 USERS] &amp;lt;= 10,DarkGray(),&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;)))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 03:54:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Re-Bar-Chart/m-p/85311#M761981</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-07-31T03:54:49Z</dc:date>
    </item>
    <item>
      <title>Re:Bar Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Re-Bar-Chart/m-p/85312#M761982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure, what's the error you're getting.&lt;/P&gt;&lt;P&gt;You're filtering [top 10 users] list, not sure how [Top 10 users] expression label you're used in the same expression for background color setting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May be try this:&lt;/P&gt;&lt;P&gt;if((Sum(users)/Sum(TOTAL users)) &amp;gt;= 25,Green(128),&lt;/P&gt;&lt;P&gt;if((Sum(users)/Sum(TOTAL users)) &amp;gt;= 10 and (Sum(users)/Sum(TOTAL users)) &amp;lt;= 25,Yellow(128),&lt;/P&gt;&lt;P&gt;if((Sum(users)/Sum(TOTAL users)) &amp;gt;= 5&amp;nbsp; and (Sum(users)/Sum(TOTAL users)) &amp;lt;= 10,DarkGray(128),Red())))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 05:33:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Re-Bar-Chart/m-p/85312#M761982</guid>
      <dc:creator>BalaBhaskar_Qlik</dc:creator>
      <dc:date>2018-07-31T05:33:37Z</dc:date>
    </item>
    <item>
      <title>Re:Bar Chart</title>
      <link>https://community.qlik.com/t5/QlikView/Re-Bar-Chart/m-p/85313#M761983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is nothing wrong with your expression. Just check the output of [&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TOP 10 USERS] before displaying it in the %.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;I just took some sample data and calculated TOP 10 USERS and i unchecked the show in Percentage option.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;IMG alt="1.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/209332_1.PNG" style="height: auto;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;I got the values like 0.29, 0.24 etc, which does not satisfy your condition.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;IMG alt="2.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/209336_2.PNG" style="height: auto;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;You can try&lt;/P&gt;&lt;P&gt;=if(([TOP 10 USERS])*100 &amp;gt;= 25,Green(128),&lt;/P&gt;&lt;P&gt;if(([TOP 10 USERS])*100 &amp;gt;= 10 and [TOP 10 USERS] &amp;lt;= 25,Yellow(128),&lt;/P&gt;&lt;P&gt;if(([TOP 10 USERS])*100 &amp;gt;= 5 and [TOP 10 USERS] &amp;lt;= 10,DarkGray(128),&lt;/P&gt;&lt;P&gt;)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=( Sum(Users)/Sum(TOTAL Users))*100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer the attached qvw file for your reference&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 06:28:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Re-Bar-Chart/m-p/85313#M761983</guid>
      <dc:creator>pooja_prabhu_n</dc:creator>
      <dc:date>2018-07-31T06:28:18Z</dc:date>
    </item>
  </channel>
</rss>

