<?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: Aggregated Total Count as of TODAY() vs Daily Aggregated Count as of TODAY() in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138500#M164404</link>
    <description>&lt;P&gt;Thank you,&amp;nbsp; but I saw your ealier link, and it gives me that metioned error. Ill see if I can post the date in a URL instead.&lt;/P&gt;</description>
    <pubDate>Fri, 06 Sep 2024 22:52:51 GMT</pubDate>
    <dc:creator>RiskyBiscutsBro</dc:creator>
    <dc:date>2024-09-06T22:52:51Z</dc:date>
    <item>
      <title>Aggregated Total Count as of TODAY() vs Daily Aggregated Count as of TODAY()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138127#M164379</link>
      <description>&lt;P&gt;I am having a DAX measure issue, I am trying to do a burndown style line chart, but I need to be able to use the built in forecast function, but I am having a issues with the overall total of my task counts, i need to be able to provide a cut off date of TODAY().&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I am getting the first chart, but I need the second. I had no issue with the first measure that provides the cut off, but its the max total I cant seem to get to work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What I get with my two current measures (presented below):&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What I need the chart to look like, so anything after TODAY() does not present itself, like the example below:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;In table format you can clearly see it stops at Setp 6, but the CountFinal goes all the way to Dec 31, 2025.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my basic Many-to-One, single direction relationship, &lt;STRONG&gt;'Done (ISSUE Key)'[LAST_TRANSITION_TO_STATUS]&lt;/STRONG&gt; --&amp;gt; &lt;STRONG&gt;'Date'[Date]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;and this is the basic table structure for both tables:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Link to Data:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://can01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.google.com%2Fspreadsheets%2Fd%2F1L62DKhRGtOBVoKuvsn_cmjNU0E2BKmL-SKE_ipbTqyo%2Fedit%3Fusp%3Dsharing&amp;amp;data=05%7C02%7CFMoreira%40pembina.com%7C00a2f33c5ff44f43ce9508dccec775a0%7Caacaa1260814404b86ca5088def8e927%7C0%7C0%7C638612603268211436%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;amp;sdata=ddPc1gb3%2BKGfXquTDIErYCDZ7FB%2FvIOXuu3zuDEwqgo%3D&amp;amp;reserved=0" target="_blank"&gt;https://docs.google.com/spreadsheets/d/1L62DKhRGtOBVoKuvsn_cmjNU0E2BKmL-SKE_ipbTqyo/edit?usp=sharing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Done (ISSUE Key)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Date&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the measure that works as it should, it gives me an agregated issue count as time goes by.&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;*TotalDistinctDoneIssueKeyCountToday =&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;CALCULATE (&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; DISTINCTCOUNT('Done (ISSUE Key)'[ISSUE_KEY]),&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; 'Done (ISSUE Key)'[ISSUE_STATUS_NAME] IN {"Done", "Cancelled", "Closed"},&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; FILTER(&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ALLSELECTED('Done (ISSUE Key)'),&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Done (ISSUE Key)'[LAST_TRANSITION_TO_STATUS] &amp;lt;= MAXX(FILTER('Date', 'Date'[Date] &amp;lt;= TODAY()), 'Date'[Date])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; )&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the measure I cant seem to get to work, ive tried many variations, this is the closest I can get to it.&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;*TotalDistinctDoneIssueKeyCountFinal =&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;VAR MaxDate = MAX('Date'[Date])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;RETURN&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;IF(MaxDate &amp;lt;= TODAY(),&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; CALCULATE (&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DISTINCTCOUNT('Done (ISSUE Key)'[ISSUE_KEY]),&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Done (ISSUE Key)'[ISSUE_STATUS_NAME] IN {"Done", "Cancelled", "Closed"},&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FILTER(&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ALLSELECTED('Done (ISSUE Key)'),&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Done (ISSUE Key)'[LAST_TRANSITION_TO_STATUS] &amp;lt;= TODAY()&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; ),&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; BLANK()&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do I need to add another unrelated date table, is my measure missing something? I do not want to use a visual filter for TODAY() as end date, as this will prevent me from using the forecast function.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions will be most appreciated.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2024 23:00:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138127#M164379</guid>
      <dc:creator>RiskyBiscutsBro</dc:creator>
      <dc:date>2024-09-06T23:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregated Total Count as of TODAY() vs Daily Aggregated Count as of TODAY()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138454#M164395</link>
      <description>&lt;P&gt;As you already showed, returning BLANK will suppress the part of the chart that you don't want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please provide sample data that covers your issue or question &lt;STRONG&gt;completely&lt;/STRONG&gt;, in a &lt;STRONG&gt;usable&lt;/STRONG&gt; format (not as a screenshot).&lt;BR /&gt;&lt;BR /&gt;Do not include sensitive information or anything not related to the issue or question. &lt;BR /&gt;&lt;BR /&gt;If you are unsure how to upload data please refer to &lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;Please show the expected outcome based on the sample data you provided. &lt;BR /&gt;&lt;BR /&gt;Want faster answers? &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2024 21:33:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138454#M164395</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-09-06T21:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregated Total Count as of TODAY() vs Daily Aggregated Count as of TODAY()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138476#M164398</link>
      <description>&lt;P&gt;OOpps i should of put headers on the image, no the formula does not give me what I want. I edited the chart on paint so people could see what I want. Ill edit my question so its clearer.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2024 22:01:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138476#M164398</guid>
      <dc:creator>RiskyBiscutsBro</dc:creator>
      <dc:date>2024-09-06T22:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregated Total Count as of TODAY() vs Daily Aggregated Count as of TODAY()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138487#M164399</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Please provide sample data that covers your issue or question&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;completely&lt;/STRONG&gt;&lt;SPAN&gt;, in a&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;usable&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;format (not as a screenshot).&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2024 22:17:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138487#M164399</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-09-06T22:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregated Total Count as of TODAY() vs Daily Aggregated Count as of TODAY()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138498#M164402</link>
      <description>&lt;P&gt;I cant submit the tables in the orginal post, its keeps saying I have over 20K characters, which is not the case. But see below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2024 22:51:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138498#M164402</guid>
      <dc:creator>RiskyBiscutsBro</dc:creator>
      <dc:date>2024-09-06T22:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregated Total Count as of TODAY() vs Daily Aggregated Count as of TODAY()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138499#M164403</link>
      <description>&lt;P&gt;If you are unsure how to upload data please refer to &lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2024 22:51:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138499#M164403</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-09-06T22:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregated Total Count as of TODAY() vs Daily Aggregated Count as of TODAY()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138500#M164404</link>
      <description>&lt;P&gt;Thank you,&amp;nbsp; but I saw your ealier link, and it gives me that metioned error. Ill see if I can post the date in a URL instead.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2024 22:52:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138500#M164404</guid>
      <dc:creator>RiskyBiscutsBro</dc:creator>
      <dc:date>2024-09-06T22:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregated Total Count as of TODAY() vs Daily Aggregated Count as of TODAY()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138504#M164405</link>
      <description>&lt;P&gt;This is the anonomized dataset:&lt;/P&gt;&lt;P&gt;&lt;A href="https://can01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.google.com%2Fspreadsheets%2Fd%2F1L62DKhRGtOBVoKuvsn_cmjNU0E2BKmL-SKE_ipbTqyo%2Fedit%3Fusp%3Dsharing&amp;amp;data=05%7C02%7CFMoreira%40pembina.com%7C00a2f33c5ff44f43ce9508dccec775a0%7Caacaa1260814404b86ca5088def8e927%7C0%7C0%7C638612603268211436%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;amp;sdata=ddPc1gb3%2BKGfXquTDIErYCDZ7FB%2FvIOXuu3zuDEwqgo%3D&amp;amp;reserved=0" target="_blank"&gt;https://docs.google.com/spreadsheets/d/1L62DKhRGtOBVoKuvsn_cmjNU0E2BKmL-SKE_ipbTqyo/edit?usp=sharing&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2024 22:59:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4138504#M164405</guid>
      <dc:creator>RiskyBiscutsBro</dc:creator>
      <dc:date>2024-09-06T22:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregated Total Count as of TODAY() vs Daily Aggregated Count as of TODAY()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4139029#M164422</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Set the x axis maximum to 12/31/2025.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2024 20:57:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4139029#M164422</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-09-07T20:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregated Total Count as of TODAY() vs Daily Aggregated Count as of TODAY()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4141123#M164569</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="100342" data-lia-user-login="lbendlin" class="lia-mention lia-mention-user"&gt;lbendlin&lt;/a&gt;&amp;nbsp;thanks for providing a PBI file, unfortunately this does not solve my problem. I may not have articulated it properly, and may not have used the best images.&lt;BR /&gt;&lt;BR /&gt;but my issue is strictly with this measure:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;*TotalDistinctDoneIssueKeyCountFinal =
VAR MaxDate = MAX('Date'[Date])
RETURN
IF(MaxDate &amp;lt;= TODAY(),
    CALCULATE (
        DISTINCTCOUNT('Done (ISSUE Key)'[ISSUE_KEY]),
        'Done (ISSUE Key)'[ISSUE_STATUS_NAME] IN {"Done", "Cancelled", "Closed"},
        FILTER(
            ALLSELECTED('Done (ISSUE Key)'),
            'Done (ISSUE Key)'[LAST_TRANSITION_TO_STATUS] &amp;lt;= TODAY()
        )
    ),
    BLANK()
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;I need a to have a flat line of the max count from when it starts to TODAY().&amp;nbsp; So it needs to look like the below.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I do appreciate you taking the time on the weekend to look at it.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 17:41:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4141123#M164569</guid>
      <dc:creator>RiskyBiscutsBro</dc:creator>
      <dc:date>2024-09-09T17:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregated Total Count as of TODAY() vs Daily Aggregated Count as of TODAY()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4141140#M164570</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 17:56:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4141140#M164570</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-09-09T17:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregated Total Count as of TODAY() vs Daily Aggregated Count as of TODAY()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4141157#M164571</link>
      <description>&lt;P&gt;It was that simple hey? Thank you!! Ive been at that for days!&lt;/P&gt;</description>
      <pubDate>Mon, 09 Sep 2024 18:20:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Aggregated-Total-Count-as-of-TODAY-vs-Daily-Aggregated-Count-as/m-p/4141157#M164571</guid>
      <dc:creator>RiskyBiscutsBro</dc:creator>
      <dc:date>2024-09-09T18:20:28Z</dc:date>
    </item>
  </channel>
</rss>

