<?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 Market Share Percent In Ribbon Chart - % Of Column Total in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Market-Share-Percent-In-Ribbon-Chart-Of-Column-Total/m-p/498912#M7423</link>
    <description>&lt;P&gt;We are trying to mimic The 100% stacked bar chart's % of column&amp;nbsp;total calculation on a ribbon chart. So essentially a market share&amp;nbsp;% of total calculation for each date we have.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We've tried creating a measure that we thought would work but it has not:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;AllDivisionTracking := CALCULATE ( [TrackingNumbers], ALL ( Divisions ) )

PercentOfTotal := DIVIDE ( [TrackingNumbers], [AllDivisionTracking] )&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This measure does not seem to work when inserted as the measure on a ribbon chart. The ribbon chart seems to make this calculation over the entire date range instead of limiting it to each day as we would have expected.&lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 24 Aug 2018 21:02:46 GMT</pubDate>
    <dc:creator>sastrup</dc:creator>
    <dc:date>2018-08-24T21:02:46Z</dc:date>
    <item>
      <title>Market Share Percent In Ribbon Chart - % Of Column Total</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Market-Share-Percent-In-Ribbon-Chart-Of-Column-Total/m-p/498912#M7423</link>
      <description>&lt;P&gt;We are trying to mimic The 100% stacked bar chart's % of column&amp;nbsp;total calculation on a ribbon chart. So essentially a market share&amp;nbsp;% of total calculation for each date we have.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We've tried creating a measure that we thought would work but it has not:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;AllDivisionTracking := CALCULATE ( [TrackingNumbers], ALL ( Divisions ) )

PercentOfTotal := DIVIDE ( [TrackingNumbers], [AllDivisionTracking] )&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This measure does not seem to work when inserted as the measure on a ribbon chart. The ribbon chart seems to make this calculation over the entire date range instead of limiting it to each day as we would have expected.&lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Aug 2018 21:02:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Market-Share-Percent-In-Ribbon-Chart-Of-Column-Total/m-p/498912#M7423</guid>
      <dc:creator>sastrup</dc:creator>
      <dc:date>2018-08-24T21:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: Market Share Percent In Ribbon Chart - % Of Column Total</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Market-Share-Percent-In-Ribbon-Chart-Of-Column-Total/m-p/499218#M7433</link>
      <description>&lt;P&gt;Try using ALLEXCEPT with the date column instead of ALL:&amp;nbsp;&lt;A href="https://msdn.microsoft.com/en-us/query-bi/dax/allexcept-function-dax" target="_blank"&gt;https://msdn.microsoft.com/en-us/query-bi/dax/allexcept-function-dax&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Aug 2018 15:38:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Market-Share-Percent-In-Ribbon-Chart-Of-Column-Total/m-p/499218#M7433</guid>
      <dc:creator>deldersveld</dc:creator>
      <dc:date>2018-08-25T15:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: Market Share Percent In Ribbon Chart - % Of Column Total</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Market-Share-Percent-In-Ribbon-Chart-Of-Column-Total/m-p/500380#M7474</link>
      <description>&lt;P&gt;Taking&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="170" data-lia-user-login="deldersveld" class="lia-mention lia-mention-user"&gt;deldersveld&lt;/a&gt;&amp;nbsp;solution into consideration a ribion chart with Market Share Trends can be created. I used the formulas below and tested it for accuracy and it seems to work:&lt;/P&gt;&lt;PRE&gt;AllDivisionTracking := CALCULATE ( DistinctCount([TrackingNumbers]),FILTER(DateTable,DateTable[Date]), ALL ( Divisions ) )

PercentOfTotal := DIVIDE ( DistinctCount([TrackingNumbers]), [AllDivisionTracking] )&lt;/PRE&gt;&lt;P&gt;I added an external date table that was used in the calculation.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Aug 2018 16:13:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Market-Share-Percent-In-Ribbon-Chart-Of-Column-Total/m-p/500380#M7474</guid>
      <dc:creator>matsder</dc:creator>
      <dc:date>2018-08-27T16:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: Market Share Percent In Ribbon Chart - % Of Column Total</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Market-Share-Percent-In-Ribbon-Chart-Of-Column-Total/m-p/2100007#M21078</link>
      <description>&lt;P&gt;I'm having the exact same problem but I think my data is set up&amp;nbsp;&lt;EM&gt;slightly&amp;nbsp;&lt;/EM&gt;differently and I can't figure out what is going wrong. My data looks like the image attached.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I want the X axis on the chart to be &lt;EM&gt;Lifecycle Stage&lt;/EM&gt;&amp;nbsp;and the Y axis to be % of total cancellations by lifecycle stage, with each column split by cancellation reason.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I'd also like to be able to filter the resulting chart by geo and/or product type.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These are the measures I tried:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;BR /&gt;cancellation_reasons_per_stage =CALCULATE(SUM('Table 1'[Count]),filter('Table 1','Table 1'[Lifecycle Stage]),ALL('Table 1'[Cancellation Reason]))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;%_of_total = DIVIDE(SUM&lt;SPAN&gt;('Table 1'[Count]),[cancellation_reasons_per_stage])&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;Thanks!&lt;BR /&gt;&amp;nbsp;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Sep 2021 09:10:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Market-Share-Percent-In-Ribbon-Chart-Of-Column-Total/m-p/2100007#M21078</guid>
      <dc:creator>ShaneR</dc:creator>
      <dc:date>2021-09-27T09:10:21Z</dc:date>
    </item>
  </channel>
</rss>

