<?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: advanced bar chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863289#M302181</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To define color, you have to use "Background Color" expression, not the "main" expression itself which stays as is..&amp;nbsp; Click on the "+" sign at the expression name to see it.&amp;nbsp; The color background expression will be:&lt;/P&gt;&lt;P&gt;if(sum(sales)&amp;gt;15, green(), blue())&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 May 2015 17:47:46 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-05-14T17:47:46Z</dc:date>
    <item>
      <title>advanced bar chart</title>
      <link>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863285#M302177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to calculate attendence of an employee for a month ,with Weekname as my dimension and his sum(attendance) as&amp;nbsp; expression , but the problem is i want to show all the employees who are having attendance less than 3 days for that particular week as below the axes..just like when we are plotting graph .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 16:59:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863285#M302177</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-14T16:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: advanced bar chart</title>
      <link>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863286#M302178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All you need to do is to make the result negative if the attendance &amp;lt;=3.&amp;nbsp; For example:&lt;/P&gt;&lt;P&gt;if(sum(Attendance)&amp;gt;3, sum(Attendance), -sum(Attendance))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 17:02:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863286#M302178</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-14T17:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: advanced bar chart</title>
      <link>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863287#M302179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see if this is what you are looking for&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum({&amp;lt; employee= {"$(=sum(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;attendance) &amp;lt; 3&lt;/SPAN&gt;)"}&amp;gt;}&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;attendance&lt;/SPAN&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 17:08:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863287#M302179</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-05-14T17:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: advanced bar chart</title>
      <link>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863288#M302180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to show color in green and red &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(sum(sales)&amp;gt;15, sum(sales), Green(),&lt;/P&gt;&lt;P&gt;if(sum(sales)&amp;lt;15,-sum(sales),blue()))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this expression is not working pls help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 17:41:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863288#M302180</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-14T17:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: advanced bar chart</title>
      <link>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863289#M302181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To define color, you have to use "Background Color" expression, not the "main" expression itself which stays as is..&amp;nbsp; Click on the "+" sign at the expression name to see it.&amp;nbsp; The color background expression will be:&lt;/P&gt;&lt;P&gt;if(sum(sales)&amp;gt;15, green(), blue())&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 17:47:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863289#M302181</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-14T17:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: advanced bar chart</title>
      <link>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863290#M302182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i dont want the minus signs on red bars , what to do ??&lt;/P&gt;&lt;P&gt;&lt;IMG alt="i dont want  minus.PNG" class="jive-image image-1" src="/legacyfs/online/86611_i dont want  minus.PNG" style="height: 334px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 17:59:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863290#M302182</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-14T17:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: advanced bar chart</title>
      <link>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863291#M302183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to hide the negative numbers with text color (replace column(1) if needed with your exp)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(column(1)&amp;lt;=0,argb(0,0,0,0),black())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/86613_1.png" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 18:16:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863291#M302183</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-05-14T18:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: advanced bar chart</title>
      <link>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863292#M302184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure if it is possible.&amp;nbsp; In general, I'd rather use a clearer presentation.&amp;nbsp; Instead of showing the &amp;lt;=15 sales below the axes, I'd use a "normal" expression&lt;/P&gt;&lt;P&gt;sum(Sales)&lt;/P&gt;&lt;P&gt;But I'd add a reference line =15.&amp;nbsp; So, the lower numbers will be at or below the reference line.&amp;nbsp; In my example here the ref line is 100:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/86614_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 18:20:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863292#M302184</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-14T18:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: advanced bar chart</title>
      <link>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863293#M302185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i used the same expression i see no values on red bars ,, and could you please why you used column there ,, wht was the logic ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="lost all.PNG" class="jive-image image-1" height="326" src="/legacyfs/online/86618_lost all.PNG" style="height: 325.91935483871px; width: 605px;" width="605" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 18:24:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863293#M302185</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-14T18:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: advanced bar chart</title>
      <link>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863294#M302186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To get rid of the minus for the bars below the line add another expression of say Sum (Value)&amp;nbsp; and for it untick &lt;EM&gt;Bar&lt;/EM&gt; and tick &lt;EM&gt;Value in Data Points&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rough mock up qvw attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 18:33:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863294#M302186</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-14T18:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: advanced bar chart</title>
      <link>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863295#M302187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yup its working , please do share things like this to my mail if possible &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-email-small" href="mailto:qvhelpplease@gmail.com"&gt;qvhelpplease@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 18:51:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863295#M302187</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-14T18:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: advanced bar chart</title>
      <link>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863296#M302188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is was informative and really cool , please do mail possible suggestions to my mail &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-email-small" href="mailto:qvhelpplease@gmail.com"&gt;qvhelpplease@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 18:52:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/advanced-bar-chart/m-p/863296#M302188</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-14T18:52:37Z</dc:date>
    </item>
  </channel>
</rss>

