<?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: Running total Power BI in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2323437#M58081</link>
    <description>&lt;P&gt;In the table i am pulling from, there is no date.. Its just a day of week (1-7). I created a new measure (day of week) and linked those tables.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I fixed my formula as you suggested but did not fix issue.. Is it my date?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 07 Feb 2022 15:27:50 GMT</pubDate>
    <dc:creator>mmowrey</dc:creator>
    <dc:date>2022-02-07T15:27:50Z</dc:date>
    <item>
      <title>Running total Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2323392#M58077</link>
      <description>&lt;P&gt;I have a running total that stops calulating after 7 days and just inputs the last number continuously..&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my formula for running total:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Monthly Running Total Goal (RBC) = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[Red Cell Projected]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;&amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;BLANK&lt;/SPAN&gt;&lt;SPAN&gt;(),&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;[Red Cell Projected]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;BloodDrive[DriveDate]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;BloodDrive[DriveDate]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;= &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;BloodDrive[DriveDate]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 15:16:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2323392#M58077</guid>
      <dc:creator>mmowrey</dc:creator>
      <dc:date>2022-02-07T15:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: Running total Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2323421#M58079</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="357454" data-lia-user-login="mmowrey" class="lia-mention lia-mention-user"&gt;mmowrey&lt;/a&gt; , Do not check [Red Cell Projected] &amp;lt;&amp;gt; blank &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try like, assuming [Red Cell Projected] is&amp;nbsp; measure&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CALCULATE(&lt;BR /&gt;[Red Cell Projected],&lt;BR /&gt;FILTER(&lt;BR /&gt;ALLSELECTED(BloodDrive[DriveDate]),&lt;BR /&gt;BloodDrive[DriveDate]&amp;lt;= MAX(BloodDrive[DriveDate])))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Better to use date table&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CALCULATE(&lt;BR /&gt;[Red Cell Projected],&lt;BR /&gt;FILTER(&lt;BR /&gt;ALLSELECTED(Date[Date]),&lt;BR /&gt;Date[Date]&amp;lt;= MAX(Date[Date])))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :&lt;A href="https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions" target="_blank"&gt;radacad&lt;/A&gt; &lt;A href="https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/" target="_blank"&gt;sqlbi&lt;/A&gt; &lt;A href="https://www.youtube.com/playlist?list=PLPaNVDMhUXGYLz-w8ERQOo3KYARs7GgG-" target="_blank"&gt;My Video Series&lt;/A&gt; Appreciate your Kudos. &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 15:22:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2323421#M58079</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-02-07T15:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: Running total Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2323437#M58081</link>
      <description>&lt;P&gt;In the table i am pulling from, there is no date.. Its just a day of week (1-7). I created a new measure (day of week) and linked those tables.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I fixed my formula as you suggested but did not fix issue.. Is it my date?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 15:27:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2323437#M58081</guid>
      <dc:creator>mmowrey</dc:creator>
      <dc:date>2022-02-07T15:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: Running total Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2323486#M58082</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="357454" data-lia-user-login="mmowrey" class="lia-mention lia-mention-user"&gt;mmowrey&lt;/a&gt; , what else you have in the table other than the day of the week, to create an incremental id like date &lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Feb 2022 15:45:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2323486#M58082</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-02-07T15:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Running total Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2331233#M58588</link>
      <description>&lt;P&gt;can i attach a pbix..&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 15:19:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2331233#M58588</guid>
      <dc:creator>mmowrey</dc:creator>
      <dc:date>2022-02-10T15:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Running total Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2331345#M58594</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;Once you get your date table connected to your fact table with the donanation info and marked as a Date Table you can use functions like this for your monthly totals or beyond. Below the date table is named DATES. You can also use DATESYTD, DATESQTD&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;Month RT=&lt;/SPAN&gt;&lt;SPAN class=""&gt; CALCULATE &lt;/SPAN&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;SPAN class=""&gt; 
   &lt;SPAN&gt;[Red Cell Projected]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;),&lt;/SPAN&gt;&lt;SPAN class=""&gt; DATESMTD &lt;/SPAN&gt;&lt;SPAN class=""&gt;(Dates&lt;/SPAN&gt;&lt;SPAN class=""&gt;[&lt;/SPAN&gt;&lt;SPAN class=""&gt;Date&lt;/SPAN&gt;&lt;SPAN class=""&gt;])&lt;/SPAN&gt;
&lt;SPAN class=""&gt;)&lt;/SPAN&gt; &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 16:01:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2331345#M58594</guid>
      <dc:creator>Whitewater100</dc:creator>
      <dc:date>2022-02-10T16:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Running total Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2331570#M58611</link>
      <description>&lt;P&gt;I have created a dates table and linked as below.. DOes this look correct&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 18:25:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2331570#M58611</guid>
      <dc:creator>mmowrey</dc:creator>
      <dc:date>2022-02-10T18:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: Running total Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2331639#M58620</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;Yes it looks pretty good. Can your date table also connect to the Donor visit table?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once your date table is made (it should have continuous datesto cover all your time and beyond (for projections) you can go to data view and click on table tools. You should see an option to "Mark as Date Table" say yes and choose you Date field as the field. It will tll you if you did it correctly. Now all the time intel measures will work for you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope that helps!&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 19:08:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2331639#M58620</guid>
      <dc:creator>Whitewater100</dc:creator>
      <dc:date>2022-02-10T19:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Running total Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2351919#M59738</link>
      <description>&lt;P&gt;can i link my date table to both donor visit and blood drive table? maybe thats why this isn't working still .. what table should i link to?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Feb 2022 21:26:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2351919#M59738</guid>
      <dc:creator>mmowrey</dc:creator>
      <dc:date>2022-02-21T21:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: Running total Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2351949#M59740</link>
      <description>&lt;P&gt;thats all i have .. In my date table i have day of week and in my goal table i have day of week..&amp;nbsp; my running total works until i add an 8th day.. then i keeps whatever the value for the 7th day and just keeps adding it along&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Feb 2022 22:22:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2351949#M59740</guid>
      <dc:creator>mmowrey</dc:creator>
      <dc:date>2022-02-21T22:22:34Z</dc:date>
    </item>
    <item>
      <title>Re: Running total Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2352318#M59767</link>
      <description>&lt;P&gt;still getting the same value after a certain amount of days&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Feb 2022 04:35:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-total-Power-BI/m-p/2352318#M59767</guid>
      <dc:creator>mmowrey</dc:creator>
      <dc:date>2022-02-22T04:35:50Z</dc:date>
    </item>
  </channel>
</rss>

