<?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: Can't display a slicer-filtered cumulated count in an area chart with an additional calendar table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4149028#M164864</link>
    <description>&lt;P&gt;Thanks to &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="81111" data-lia-user-login="HotChilli" class="lia-mention lia-mention-user"&gt;HotChilli&lt;/a&gt; and &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="803137" data-lia-user-login="FlipFlop1" class="lia-mention lia-mention-user"&gt;FlipFlop1&lt;/a&gt;&amp;nbsp;I can now count the cumulated number of products with a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;MyTable[START_DATE]&amp;lt;=MyCalendar[Date]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AND filter with a slicer on the VERSION for example, thanks! &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My real table is actually a little more complex with a END_DATE in addition to the START_DATE:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;so now I'm struggling to count the &lt;STRONG&gt;number of products with &lt;U&gt;2 dates conditions&lt;/U&gt;:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;MyCalendar[Date] BETWEEN( MyTable[START_DATE]   AND   MyTable[END_DATE] )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think that somehow the relationship between MyTable[START_DATE] and MyCalendar[Date] is blocking me from calculating on the MyTable[END_DATE] but I'm able to figure it out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've updated my &lt;A href="https://drive.google.com/file/d/15G4t1lkPYMSBXEjm65zyQvpTQxQ3SvQP" target="_blank" rel="noopener"&gt;COUNT calendar_LIGHT.pbix&lt;/A&gt; if anyone wants to take a look at it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Olivier.&lt;/P&gt;</description>
    <pubDate>Fri, 13 Sep 2024 09:16:18 GMT</pubDate>
    <dc:creator>oduc78</dc:creator>
    <dc:date>2024-09-13T09:16:18Z</dc:date>
    <item>
      <title>Can't display a slicer-filtered cumulated count in an area chart with an additional calendar table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4141229#M164575</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'll try to summarize my problem:&lt;/P&gt;&lt;P&gt;• I have a table named&amp;nbsp;&lt;STRONG&gt;MyTable&lt;/STRONG&gt; with 3 columns: &lt;STRONG&gt;PRODUCT&lt;/STRONG&gt; (A, B, C, etc.), &lt;STRONG&gt;START_DATE&lt;/STRONG&gt;, and &lt;STRONG&gt;VERSION&lt;/STRONG&gt; (V1, V2, V3...):&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;• I would like to display in an date-based area chart the &lt;STRONG&gt;&lt;U&gt;cumulated count of products produced over time&lt;/U&gt;&lt;/STRONG&gt; AND taking into account the version selected in a slicer.&lt;/P&gt;&lt;P&gt;• Fot this I created a new &lt;STRONG&gt;Calendar&lt;/STRONG&gt; table based on my MIN and MAX dates :&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;STRONG&gt;MyCalendar &lt;/STRONG&gt;&lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;CALENDAR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MIN&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MyTable&lt;/SPAN&gt;&lt;SPAN&gt;[START_DATE]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MyTable&lt;/SPAN&gt;&lt;SPAN&gt;[START_DATE]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;and I created a 1&amp;lt;&amp;gt;Multiple relationship with the START_DATE column of MyTable:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I created a column to calculate the cumulated count that I'm looking for:&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;&lt;STRONG&gt;CumulNbProducts_Column&lt;/STRONG&gt; =&lt;/SPAN&gt; &lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;COUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MyTable&lt;/SPAN&gt;&lt;SPAN&gt;[PRODUCT]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MyTable&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;MyTable&lt;/SPAN&gt;&lt;SPAN&gt;[START_DATE]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;=&lt;/SPAN&gt;&lt;SPAN&gt;MyCalendar&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;I also tried to create a measure to do the same kind of calculation but couldn't figure out how to make the filter on the date work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;• So when I try to plot my &lt;SPAN&gt;&lt;STRONG&gt;CumulNbProducts_Column&lt;/STRONG&gt; &lt;/SPAN&gt;versus the &lt;STRONG&gt;Calendar[Date]&lt;/STRONG&gt; I get pretty much what I wanted with 1 point showing the cumulated count for each day of the whole period:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;with 1 product on 1/01, 3 products on 1/02, 4 products on 1/04, etc.&lt;/P&gt;&lt;P&gt;• &lt;U&gt;BUT&lt;/U&gt; if I select a particular version in a slicer, V2 for example, my chart displays only the 3 points corresponding to V2 but still counts the V1 and V3 products:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&amp;nbsp; &lt;img /&gt;&lt;/P&gt;&lt;P&gt;I get the same problem if I try to use the START_DATE as the time base for my chart.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically using the slicer filters out the dates but not the COUNT calculation. I can't figure out what I'm doing wrong. Either I should find a measure that will recalculate the count based on the version selected in the slicer or modify the relationship between the 2 tables.&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance, regards.&lt;/P&gt;&lt;P&gt;Olivier.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 19:24:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4141229#M164575</guid>
      <dc:creator>oduc78</dc:creator>
      <dc:date>2024-09-09T19:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: Can't display a slicer-filtered cumulated count in an area chart with an additional calendar table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4141396#M164581</link>
      <description>&lt;P&gt;It will have to be a measure (so that it responds to changes in the slicer).&lt;/P&gt;
&lt;P&gt;You probably want the relationship direction between date and MyTable to be single direction - but that's not the main issue.&lt;/P&gt;
&lt;P&gt;Re-write the DAX into a measure and change the FILTER clause so it only refers to the MyCalendar table-&amp;gt; so just a couple of small changes.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 21:50:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4141396#M164581</guid>
      <dc:creator>HotChilli</dc:creator>
      <dc:date>2024-09-09T21:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: Can't display a slicer-filtered cumulated count in an area chart with an additional calendar table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4142260#M164622</link>
      <description>&lt;P&gt;Thanks for the tips &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="81111" data-lia-user-login="HotChilli" class="lia-mention lia-mention-user"&gt;HotChilli&lt;/a&gt; .&lt;/P&gt;&lt;P&gt;I'll try to improve my measure. For now I tried this but it only counts the total for each existing day, not the cumulated count :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CumulNbProducts_Measure = CALCULATE(COUNT(MyTable[PRODUCT]), FILTER(MyTable, MyTable[START_DATE]&amp;lt;=SELECTEDVALUE(MyCalendar[Date])))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I'll work on it following your advice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the meantime here's an example file : &lt;A href="https://drive.google.com/file/d/15G4t1lkPYMSBXEjm65zyQvpTQxQ3SvQP" target="_blank" rel="noopener"&gt;COUNT calendar_LIGHT.pbix&lt;/A&gt; if anyone feels like taking a look! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Olivier.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Sep 2024 08:13:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4142260#M164622</guid>
      <dc:creator>oduc78</dc:creator>
      <dc:date>2024-09-13T08:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: Can't display a slicer-filtered cumulated count in an area chart with an additional calendar table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4142348#M164624</link>
      <description>&lt;P&gt;Create 2 Measures:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;1. Product Cout =&lt;/SPAN&gt; &lt;SPAN&gt;COUNTX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'MyTable'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;MyTable&lt;/SPAN&gt;&lt;SPAN&gt;[PRODUCT]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I used the quick measure to create the cumulative count (running total) as its complex:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;2. Product Cout running total &lt;/SPAN&gt;&lt;SPAN&gt;in&lt;/SPAN&gt;&lt;SPAN&gt; Date =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[Product Cout]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'MyCalendar'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ISONORAFTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'MyCalendar'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'MyCalendar'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;DESC&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;Then drop the new running total measure into the graph:&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;img /&gt;&lt;P&gt;You should always try to use measures instead of columns or calculated columns in your visuals.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 10 Sep 2024 08:36:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4142348#M164624</guid>
      <dc:creator>FlipFlop1</dc:creator>
      <dc:date>2024-09-10T08:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: Can't display a slicer-filtered cumulated count in an area chart with an additional calendar table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4142650#M164642</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="803137" data-lia-user-login="FlipFlop1" class="lia-mention lia-mention-user"&gt;FlipFlop1&lt;/a&gt; , thanks a lot for the code, it does work on my little example file! &lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt; I had never seen the &lt;EM&gt;ISONORAFTER &lt;/EM&gt;function so far.&lt;/P&gt;&lt;P&gt;I'm now trying to apply this to my real PBIX file with additional parameters. I still don't quite understand how START_DATE is taken into account in the calculation since it's never mentioned in the code of the 2 measures.&lt;/P&gt;&lt;P&gt;I will keep you updated when I'm done.&lt;/P&gt;&lt;P&gt;Olivier.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EDIT: of course START_DATE is taken into account through the relationship between the 2 tables! My bad!&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 13:00:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4142650#M164642</guid>
      <dc:creator>oduc78</dc:creator>
      <dc:date>2024-09-10T13:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: Can't display a slicer-filtered cumulated count in an area chart with an additional calendar table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4149028#M164864</link>
      <description>&lt;P&gt;Thanks to &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="81111" data-lia-user-login="HotChilli" class="lia-mention lia-mention-user"&gt;HotChilli&lt;/a&gt; and &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="803137" data-lia-user-login="FlipFlop1" class="lia-mention lia-mention-user"&gt;FlipFlop1&lt;/a&gt;&amp;nbsp;I can now count the cumulated number of products with a&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;MyTable[START_DATE]&amp;lt;=MyCalendar[Date]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AND filter with a slicer on the VERSION for example, thanks! &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My real table is actually a little more complex with a END_DATE in addition to the START_DATE:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;so now I'm struggling to count the &lt;STRONG&gt;number of products with &lt;U&gt;2 dates conditions&lt;/U&gt;:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;MyCalendar[Date] BETWEEN( MyTable[START_DATE]   AND   MyTable[END_DATE] )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think that somehow the relationship between MyTable[START_DATE] and MyCalendar[Date] is blocking me from calculating on the MyTable[END_DATE] but I'm able to figure it out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've updated my &lt;A href="https://drive.google.com/file/d/15G4t1lkPYMSBXEjm65zyQvpTQxQ3SvQP" target="_blank" rel="noopener"&gt;COUNT calendar_LIGHT.pbix&lt;/A&gt; if anyone wants to take a look at it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Olivier.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Sep 2024 09:16:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4149028#M164864</guid>
      <dc:creator>oduc78</dc:creator>
      <dc:date>2024-09-13T09:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Can't display a slicer-filtered cumulated count in an area chart with an additional calendar table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4177509#M165904</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="604917" data-lia-user-login="oduc78" class="lia-mention lia-mention-user"&gt;oduc78&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="803137" data-lia-user-login="FlipFlop1" class="lia-mention lia-mention-user"&gt;FlipFlop1&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="81111" data-lia-user-login="HotChilli" class="lia-mention lia-mention-user"&gt;HotChilli&lt;/a&gt;&amp;nbsp;reply!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="604917" data-lia-user-login="oduc78" class="lia-mention lia-mention-user"&gt;oduc78&lt;/a&gt;&amp;nbsp;How is the situation now? If the problem has been solved, please accept answers you find helpful as solutions that will help others with the same problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you to all for your contributions, which make the PowerBI community even more vibrant!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Mengmeng Li&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 10:00:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4177509#M165904</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-09-26T10:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: Can't display a slicer-filtered cumulated count in an area chart with an additional calendar table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4177814#M165953</link>
      <description>&lt;P&gt;Hi Mengmeng, unfortunately I still haven't found a solution to my problem.&lt;/P&gt;&lt;P&gt;Olivier.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 11:34:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-t-display-a-slicer-filtered-cumulated-count-in-an-area-chart/m-p/4177814#M165953</guid>
      <dc:creator>oduc78</dc:creator>
      <dc:date>2024-09-26T11:34:31Z</dc:date>
    </item>
  </channel>
</rss>

