<?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: Creating combo chart with two measure calculated by dimension field in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Creating-combo-chart-with-two-measure-calculated-by-dimension/m-p/70882#M4707</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I realize now I should not have called my dimension "Date", I updated it to "End_Date" so I could tell the difference between what needs to be the date function and what needs to be my dimension.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Apr 2018 18:49:27 GMT</pubDate>
    <dc:creator>tyember1</dc:creator>
    <dc:date>2018-04-06T18:49:27Z</dc:date>
    <item>
      <title>Creating combo chart with two measure calculated by dimension field</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-combo-chart-with-two-measure-calculated-by-dimension/m-p/70879#M4704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Qlik Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been trying to create a bar chart showing a sum based on the year found in the date field on the record (a 2017 vs 2018 comparison using the same date field and same qty field) my date format is YYYY-MM-DD. My data begins Jan 1st, 2017.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The chart expression I am using is &lt;SPAN style="font-size: 13.3333px;"&gt;IF(LEFT(End_Date,4) &amp;lt; '2018', sum(Aggr(Sum(Qty),End_Date)))&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The expression checker validates it, but It still will not produce any visualization. I have tried loading the date in different format styles but no joy. Is there a different way to use the aggr function to display the measure based on a dimension value? Or should I be loading the date data differently?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 18:02:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-combo-chart-with-two-measure-calculated-by-dimension/m-p/70879#M4704</guid>
      <dc:creator>tyember1</dc:creator>
      <dc:date>2018-04-06T18:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Creating combo chart with two measure calculated by dimension field</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-combo-chart-with-two-measure-calculated-by-dimension/m-p/70880#M4705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be you need this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;Sum(Aggr(Sum({&amp;lt;Date = {"$(='&amp;lt;=' &amp;amp; Date(MakeDate(2018), 'YYYY-MM-DD'))"}&amp;gt;} Qty), Date))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 18:28:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-combo-chart-with-two-measure-calculated-by-dimension/m-p/70880#M4705</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-04-06T18:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: Creating combo chart with two measure calculated by dimension field</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-combo-chart-with-two-measure-calculated-by-dimension/m-p/70881#M4706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be something like this - &lt;/P&gt;&lt;P&gt;Dimension - Valuelist('2017','2018')&lt;/P&gt;&lt;P&gt;Measure - Pick(Match(Valuelist('2017','2018'),'2017',2018'),&lt;/P&gt;&lt;P&gt;Sum(If(&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;LEFT(Date,4) = '2017',Qty)),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Sum(If(&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;LEFT(Date,4) = '2018',Qty))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 18:29:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-combo-chart-with-two-measure-calculated-by-dimension/m-p/70881#M4706</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2018-04-06T18:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: Creating combo chart with two measure calculated by dimension field</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-combo-chart-with-two-measure-calculated-by-dimension/m-p/70882#M4707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I realize now I should not have called my dimension "Date", I updated it to "End_Date" so I could tell the difference between what needs to be the date function and what needs to be my dimension.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 18:49:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-combo-chart-with-two-measure-calculated-by-dimension/m-p/70882#M4707</guid>
      <dc:creator>tyember1</dc:creator>
      <dc:date>2018-04-06T18:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: Creating combo chart with two measure calculated by dimension field</title>
      <link>https://community.qlik.com/t5/App-Development/Creating-combo-chart-with-two-measure-calculated-by-dimension/m-p/70883#M4708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you! I completely overlooked putting Sum before the IF function.. that solved everything. Thanks again for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 19:12:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Creating-combo-chart-with-two-measure-calculated-by-dimension/m-p/70883#M4708</guid>
      <dc:creator>tyember1</dc:creator>
      <dc:date>2018-04-06T19:12:36Z</dc:date>
    </item>
  </channel>
</rss>

