<?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 Easily alternate between measures in a single graph? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Easily-alternate-between-measures-in-a-single-graph/m-p/1064727#M17243</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to build a sales app, and I was wondering about the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the moment, I have built two duplicate versions of most sheets in the app, the only difference being that the graphs in one sheet use a measure sum(Quantity) for an analysis of the quantity sold, while the same graphs in the duplicate sheet use the measure sum(Revenue) to show the sales revenue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to integrate this, for example by somehow loading both measures into the same graph, and allowing the user to easily select which measure to display and to switch back and forth? I think this would increase the user-friendliness of the app, and reduce the amount of sheets by 50%. Of course I know that you can change the measure by going into edit mode, but this can get a bit cumbersome if you need to change multiple graphs, and most of my colleagues are not very familliar with this mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 06 Feb 2016 16:06:33 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-02-06T16:06:33Z</dc:date>
    <item>
      <title>Easily alternate between measures in a single graph?</title>
      <link>https://community.qlik.com/t5/App-Development/Easily-alternate-between-measures-in-a-single-graph/m-p/1064727#M17243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to build a sales app, and I was wondering about the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the moment, I have built two duplicate versions of most sheets in the app, the only difference being that the graphs in one sheet use a measure sum(Quantity) for an analysis of the quantity sold, while the same graphs in the duplicate sheet use the measure sum(Revenue) to show the sales revenue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to integrate this, for example by somehow loading both measures into the same graph, and allowing the user to easily select which measure to display and to switch back and forth? I think this would increase the user-friendliness of the app, and reduce the amount of sheets by 50%. Of course I know that you can change the measure by going into edit mode, but this can get a bit cumbersome if you need to change multiple graphs, and most of my colleagues are not very familliar with this mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Feb 2016 16:06:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Easily-alternate-between-measures-in-a-single-graph/m-p/1064727#M17243</guid>
      <dc:creator />
      <dc:date>2016-02-06T16:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Easily alternate between measures in a single graph?</title>
      <link>https://community.qlik.com/t5/App-Development/Easily-alternate-between-measures-in-a-single-graph/m-p/1064728#M17244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In qlikview I would use an expression-group but I'm not sure if it in sense available. As alternativel you could create an additionally field with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ExpressionType:&lt;/P&gt;&lt;P&gt;Load * Inline [&lt;/P&gt;&lt;P&gt;ExpressionType&lt;/P&gt;&lt;P&gt;Quantity&lt;/P&gt;&lt;P&gt;Revenue&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and use selections in this field to switch the expression with something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(getfieldselections(ExpressionType) = 'Quantity', sum(Quantity), sum(Revenue))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Feb 2016 18:59:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Easily-alternate-between-measures-in-a-single-graph/m-p/1064728#M17244</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-02-06T18:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: Easily alternate between measures in a single graph?</title>
      <link>https://community.qlik.com/t5/App-Development/Easily-alternate-between-measures-in-a-single-graph/m-p/1064729#M17245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will "Combo Chart" work for you? You can show both quantity and revenue on the same graph, then use Primary and Secondary axis for each measure respectively because most likely the value ranges between the two measures differ significantly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Muliady&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Feb 2016 19:08:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Easily-alternate-between-measures-in-a-single-graph/m-p/1064729#M17245</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-06T19:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: Easily alternate between measures in a single graph?</title>
      <link>https://community.qlik.com/t5/App-Development/Easily-alternate-between-measures-in-a-single-graph/m-p/1064730#M17246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure about expression groups either, but your alternative suggestion also did the trick for me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for the help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Feb 2016 11:36:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Easily-alternate-between-measures-in-a-single-graph/m-p/1064730#M17246</guid>
      <dc:creator />
      <dc:date>2016-02-12T11:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: Easily alternate between measures in a single graph?</title>
      <link>https://community.qlik.com/t5/App-Development/Easily-alternate-between-measures-in-a-single-graph/m-p/1064731#M17247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the suggestion! I've played around with this, but I personally find combo charts with two axes to be a bit difficult to read in general, especially because the labels on the secondary axis often do not line up with the gridlines...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Feb 2016 11:40:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Easily-alternate-between-measures-in-a-single-graph/m-p/1064731#M17247</guid>
      <dc:creator />
      <dc:date>2016-02-12T11:40:44Z</dc:date>
    </item>
  </channel>
</rss>

