<?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: Filling gaps in income v target table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filling-gaps-in-income-v-target-table/m-p/2569440#M73320</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317608" data-lia-user-login="jonbrooker" class="lia-mention lia-mention-user"&gt;jonbrooker&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;not very clear. Do you want to fill the gaps with last nonblank previous value?&lt;/P&gt;</description>
    <pubDate>Thu, 09 Jun 2022 14:17:28 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2022-06-09T14:17:28Z</dc:date>
    <item>
      <title>Filling gaps in income v target table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filling-gaps-in-income-v-target-table/m-p/2569426#M73319</link>
      <description>&lt;P&gt;Hi all, I'm trying to create a table / graph showing cumulative income and cumulative target by week.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm drawing data from a table of financial records that includes a handy 'Week of created date' with which to group the individual records. However there are some weeks where no income was received, the consequence being that the target does not increment for those missing weeks. My problem is how do I fill the gaps?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried creating a new table, 'Weeks' that generates a series of dates between the start and end of the timeseries with 7 day intervals, and joined that to the 'Week of created date'. I can then use the [Value] in my table, but the running target still does not increment with the blank weeks.&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;&lt;P&gt;The [Running target] is in a table called 'Cumulative income':&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Running target = &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;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Cumulative income'[Weekly target]&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;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;&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;'Weeks'[Value]&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;&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;'Weeks'[Value]&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;'Weeks'[Value]&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;&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any advice on how I get the running target to increment with each week would be very gratefully received! If more information would help, just let me know.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2022 14:08:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filling-gaps-in-income-v-target-table/m-p/2569426#M73319</guid>
      <dc:creator>jonbrooker</dc:creator>
      <dc:date>2022-06-09T14:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: Filling gaps in income v target table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filling-gaps-in-income-v-target-table/m-p/2569440#M73320</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317608" data-lia-user-login="jonbrooker" class="lia-mention lia-mention-user"&gt;jonbrooker&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;not very clear. Do you want to fill the gaps with last nonblank previous value?&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2022 14:17:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filling-gaps-in-income-v-target-table/m-p/2569440#M73320</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-09T14:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: Filling gaps in income v target table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filling-gaps-in-income-v-target-table/m-p/2569463#M73322</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;, I want the Running target to increment every week, including in the weeks when there is no Total income.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2022 14:28:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filling-gaps-in-income-v-target-table/m-p/2569463#M73322</guid>
      <dc:creator>jonbrooker</dc:creator>
      <dc:date>2022-06-09T14:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Filling gaps in income v target table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filling-gaps-in-income-v-target-table/m-p/2569467#M73323</link>
      <description>&lt;P&gt;By how much?&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2022 14:29:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filling-gaps-in-income-v-target-table/m-p/2569467#M73323</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-09T14:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: Filling gaps in income v target table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filling-gaps-in-income-v-target-table/m-p/2569501#M73325</link>
      <description>&lt;P&gt;By the [Weekly target]. At the moment my Running target only goes up when the Running income also goes up. I don't understand why as I have tried to link it to a full list of weeks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the screenshot above, the Running target goes up in the first two weeks (when there was some income), but then stays the same in the next two weeks when there is none.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jun 2022 14:34:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filling-gaps-in-income-v-target-table/m-p/2569501#M73325</guid>
      <dc:creator>jonbrooker</dc:creator>
      <dc:date>2022-06-09T14:34:51Z</dc:date>
    </item>
  </channel>
</rss>

