<?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: combo chart color measures by expression in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/1652524#M48715</link>
    <description>&lt;P&gt;hi, this would be really useful - is it available yet?&lt;/P&gt;&lt;P&gt;I have a line chart with two measures that show 'Actual LTD' &amp;amp; 'Target LTD' by month.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I simply want to gray-out those months prior to the current year-month selection. This part I can do ok, but I can't figure how to set a different colour for each measure in the 'else' part of the If statement?&lt;/P&gt;</description>
    <pubDate>Fri, 29 Nov 2019 05:06:18 GMT</pubDate>
    <dc:creator>GregWP</dc:creator>
    <dc:date>2019-11-29T05:06:18Z</dc:date>
    <item>
      <title>combo chart color measures by expression</title>
      <link>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986701#M14419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i'm using a combo chart to display two measures.&amp;nbsp; the two measure expressions are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(if([Availability woMW Severity]='Major',1,0))&lt;/P&gt;&lt;P&gt;sum(if([Availability woMW Severity]='Minor',1,0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the resulting graph is:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="107243" alt="ss 2015-11-25 at 5.35.33 PM.jpg" class="jive-image image-1" src="/legacyfs/online/107243_ss 2015-11-25 at 5.35.33 PM.jpg" style="height: 168px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;i need to assign a specific color to each line.&amp;nbsp; using the color by expression.&amp;nbsp; i tried a few iterations of the following, but it's not doing it for me.&amp;nbsp; any suggestions?&lt;/P&gt;&lt;P&gt;if("Availability woMW Severity"='Major',RGB(255,0,0),if("Availability woMW Severity"='Minor',RGB(255,165,0)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there a way to refer to a measure in an expression by using it's label, etc?&amp;nbsp; i.e. the two measures have labels "Major count" and "Minor count".&amp;nbsp; wondering if there's a function that allows something along the lines of if(MeasureLabel = "Major count",red,if(MeasureLabel = "Minor count",orange))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2015 22:51:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986701#M14419</guid>
      <dc:creator />
      <dc:date>2015-11-25T22:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: chart color measures by expression</title>
      <link>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986702#M14420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not with 2 measures &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT... you can add an extra dimension using a synthetic expression like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;valuelist('Major SLA Violations Count','&lt;SPAN style="font-size: 13.3333px;"&gt;Minor SLA Violations Count&lt;/SPAN&gt;')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then remove both measures and create just one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;valuelist('Major SLA Violations Count','&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Minor SLA Violations Count&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;') = 'Major SLA Violations Count', &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;sum(if([Availability woMW Severity]='Major',1,0)),&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( &lt;SPAN style="font-size: 13.3333px;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;valuelist('Major SLA Violations Count','&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Minor SLA Violations Count&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;') = 'Minor SLA Violations Count', &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;sum(if([Availability woMW Severity]='Minor',1,0))&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can color by expression like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;if(&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;valuelist('Major SLA Violations Count','&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Minor SLA Violations Count&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;') = 'Major SLA Violations Count', &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; red() &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( &lt;SPAN style="font-size: 13.3333px;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;valuelist('Major SLA Violations Count','&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Minor SLA Violations Count&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;') = 'Minor SLA Violations Count', &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;green()&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&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;where red() and green() are valid color expressions in qlik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2015 02:03:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986702#M14420</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2015-11-26T02:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: chart color measures by expression</title>
      <link>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986703#M14421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For an example on how to achieve this as Johathan mentioned check the attached QVF.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/107335_Capture.PNG" style="height: 182px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture1.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/107339_Capture1.PNG" style="height: 286px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;-Sangram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2015 10:14:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986703#M14421</guid>
      <dc:creator>reddy-s</dc:creator>
      <dc:date>2015-11-26T10:14:24Z</dc:date>
    </item>
    <item>
      <title>Re: chart color measures by expression</title>
      <link>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986704#M14422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Jonathan, Sangram.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you're suggesting works great for line chart, but unfortunately unless my understanding is incorrect, it does not work for combo charts.&amp;nbsp; combo charts do not allow multiple dimensions.&amp;nbsp; i need combo charts to display the data vs two different y-axis.&amp;nbsp; any idea how to implement a color measure by expression function for combo charts?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2015 16:03:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986704#M14422</guid>
      <dc:creator />
      <dc:date>2015-11-26T16:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: chart color measures by expression</title>
      <link>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986705#M14423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its not possible to colour code a combo chart, the way its done in a line chart or a bar chart because of the dimension limit. As you cannot achieve this with a combo chart, I would prefer going for an extension or build one for your business requirement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2015 16:52:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986705#M14423</guid>
      <dc:creator>reddy-s</dc:creator>
      <dc:date>2015-11-26T16:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: chart color measures by expression</title>
      <link>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986706#M14424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you for the reply, but i would prefer the functionality is added to qlik sense.&amp;nbsp; seems like something that would be useful across the board.&amp;nbsp; should be as simple as measure a = color x, measure b = color y, etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2015 16:59:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986706#M14424</guid>
      <dc:creator />
      <dc:date>2015-11-26T16:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: chart color measures by expression</title>
      <link>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986707#M14425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This functionality will be added soon,&amp;nbsp; just not.right now. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2015 19:40:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986707#M14425</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2015-11-26T19:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: chart color measures by expression</title>
      <link>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986708#M14426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;awsome.&amp;nbsp; thank you jonathan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2015 20:38:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986708#M14426</guid>
      <dc:creator />
      <dc:date>2015-11-26T20:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: combo chart color measures by expression</title>
      <link>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986709#M14427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan, and soon is really when ? Next release ? I know , it's commercial confidential, but as we use QlikSense more and more especially on the Enterprise side, there are so many features (us QlikView dev types) are used to that we are being asked to reproduce in QlikSense only to see disappointment in the requester's demeanor&amp;nbsp; when they are told pretty much that it's not available in QS or an extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A tad embarrassing when a power user says "Look I can do this easily in Excel (brr shiver) or Tableau etc" how does one reply besides the standard "Oh hopefully the next version will solve it" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes QS has a little way to go as far as competitive maturity is concerned, but users/developers want it sooner than later &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2015 21:07:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986709#M14427</guid>
      <dc:creator>paul_scotchford</dc:creator>
      <dc:date>2015-11-26T21:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: combo chart color measures by expression</title>
      <link>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986710#M14428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. i shared the feedback. Its not next month but is coming. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You did not find an extension to do this ? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Nov 2015 15:28:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/986710#M14428</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2015-11-27T15:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: combo chart color measures by expression</title>
      <link>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/1652524#M48715</link>
      <description>&lt;P&gt;hi, this would be really useful - is it available yet?&lt;/P&gt;&lt;P&gt;I have a line chart with two measures that show 'Actual LTD' &amp;amp; 'Target LTD' by month.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I simply want to gray-out those months prior to the current year-month selection. This part I can do ok, but I can't figure how to set a different colour for each measure in the 'else' part of the If statement?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 05:06:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/combo-chart-color-measures-by-expression/m-p/1652524#M48715</guid>
      <dc:creator>GregWP</dc:creator>
      <dc:date>2019-11-29T05:06:18Z</dc:date>
    </item>
  </channel>
</rss>

