<?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: Add values at missing dates in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/820064#M5558</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="177967" data-lia-user-login="peterschuller" class="lia-mention lia-mention-user"&gt;peterschuller&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I had a quick look at the file. There are relationships. If you delete them or make them inactive i believe it works (the resulting table has then around 7 million rows)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Please mark the question solved when done and consider giving kudos if posts are helpful.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Cheers&amp;nbsp;&amp;nbsp;&lt;IMG src="https://community.fabric.microsoft.com/html/badge_icons/SU18_powerbi_badge.png" alt="Datanaut" width="64" height="64" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 16 Oct 2019 20:01:48 GMT</pubDate>
    <dc:creator>AlB</dc:creator>
    <dc:date>2019-10-16T20:01:48Z</dc:date>
    <item>
      <title>Add values at missing dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/816609#M5424</link>
      <description>&lt;P&gt;I have two different tables:&lt;/P&gt;&lt;P&gt;1) a date table&lt;/P&gt;&lt;P&gt;Date&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;01-01-19&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01-02-19&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01-03-19&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01-04-19&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01-05-19&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01-06-19&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01-07-19&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01-08-19&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01-09-19&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) a table with stockquantities per date, but this only contains a value if the stock has been changed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Partcode Date&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; StockQty&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;A1&lt;/TD&gt;&lt;TD&gt;01-01-19&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A1&lt;/TD&gt;&lt;TD&gt;01-05-19&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A1&lt;/TD&gt;&lt;TD&gt;01-08-19&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A2&lt;/TD&gt;&lt;TD&gt;01-03-19&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A2&lt;/TD&gt;&lt;TD&gt;01-08-19&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A2&lt;/TD&gt;&lt;TD&gt;01-09-19&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to write a measure with fills the empty dates in the date table with the value from the previous non blank date in the stock data table. The result should be equal to the table below:&lt;/P&gt;&lt;P&gt;Partcode date StockQty&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;A1&lt;/TD&gt;&lt;TD&gt;01-01-19&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A1&lt;/TD&gt;&lt;TD&gt;01-02-19&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A1&lt;/TD&gt;&lt;TD&gt;01-03-19&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A1&lt;/TD&gt;&lt;TD&gt;01-04-19&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A1&lt;/TD&gt;&lt;TD&gt;01-05-19&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A1&lt;/TD&gt;&lt;TD&gt;01-06-19&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A1&lt;/TD&gt;&lt;TD&gt;01-07-19&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A1&lt;/TD&gt;&lt;TD&gt;01-08-19&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A1&lt;/TD&gt;&lt;TD&gt;01-09-19&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A2&lt;/TD&gt;&lt;TD&gt;01-03-19&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A2&lt;/TD&gt;&lt;TD&gt;01-04-19&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A2&lt;/TD&gt;&lt;TD&gt;01-05-19&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A2&lt;/TD&gt;&lt;TD&gt;01-06-19&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A2&lt;/TD&gt;&lt;TD&gt;01-07-19&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A2&lt;/TD&gt;&lt;TD&gt;01-08-19&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A2&lt;/TD&gt;&lt;TD&gt;01-09-19&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help me? If tried for several hours now and am quit desperate.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Oct 2019 18:40:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/816609#M5424</guid>
      <dc:creator>peterschuller</dc:creator>
      <dc:date>2019-10-13T18:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: Add values at missing dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/816653#M5427</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="177967" data-lia-user-login="peterschuller" class="lia-mention lia-mention-user"&gt;peterschuller&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try creating a new table (Table2 is the second one you show):&lt;/P&gt;
&lt;PRE&gt;TableRes =
GENERATE (
    Table2;
    GENERATESERIES (
        CALCULATE ( DISTINCT ( Table2[Date] ) );
        VAR Current_ =
            CALCULATE ( DISTINCT ( Table2[Date] ) )
        VAR Next_ =
            CALCULATE (
                MIN ( Table2[Date] );
                Table2[Date] &amp;gt; Current_;
                ALL ( Table2[StockQty] )
            )
        RETURN
            IF ( NOT ISBLANK ( Next_ ); Next_ - 1; Current_ )
    )
)
&lt;/PRE&gt;
&lt;P&gt;You'll have the actual date column in "Value". Delete the column&amp;nbsp; 'Date'&amp;nbsp; and rename Value as Date.&amp;nbsp; All this would probably be more elegant in M.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Please mark the question solved when done and consider giving kudos if posts are helpful.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Cheers&amp;nbsp;&amp;nbsp;&lt;IMG src="https://community.fabric.microsoft.com/html/badge_icons/SU18_powerbi_badge.png" border="0" alt="Datanaut" width="64" height="64" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Oct 2019 22:10:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/816653#M5427</guid>
      <dc:creator>AlB</dc:creator>
      <dc:date>2019-10-13T22:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Add values at missing dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/818763#M5517</link>
      <description>&lt;P&gt;Thanks a lot&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92178" data-lia-user-login="AlB" class="lia-mention lia-mention-user"&gt;AlB&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think this is getting in the right direction, but so far the new table looks almost the same as the original table.&lt;/P&gt;&lt;P&gt;I have selected one PartID and this is how it looked in the original table:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;In the newly created table the same selection looks like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I used this DAX formula:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;/DIV&gt;&lt;DIV&gt;I think I miss the link with my first table (the date table) which contains all the dates of 2018.&lt;/DIV&gt;&lt;DIV&gt;The result should be a table with a stockposition for each of the 365 days of 2018.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2019 19:05:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/818763#M5517</guid>
      <dc:creator>peterschuller</dc:creator>
      <dc:date>2019-10-15T19:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: Add values at missing dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/818819#M5526</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="177967" data-lia-user-login="peterschuller" class="lia-mention lia-mention-user"&gt;peterschuller&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It seems to work in the tests I ran. Have a look at the &lt;STRONG&gt;attached file&lt;/STRONG&gt;, where I've also included a "cleaned" version with the updated column names deleting the old "Date" column:&amp;nbsp; &amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;TableResCleaned = 
SELECTCOLUMNS (
    GENERATE (
        Table1;
        GENERATESERIES (
            CALCULATE ( DISTINCT ( Table1[Date] ) );
            VAR Current_ =
                CALCULATE ( DISTINCT ( Table1[Date] ) )
            VAR Next_ =
                CALCULATE (
                    MIN ( Table1[Date] );
                    Table1[Date] &amp;gt; Current_;
                    ALL ( Table1[StockQty] )
                )
            RETURN
                IF ( NOT ISBLANK ( Next_ ); Next_ - 1; Current_ )
        )
    );
    "Partcode"; [Partcode];
    "Date"; [Value];
    "StockQty"; [StockQty]
)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Please mark the question solved when done and consider giving kudos if posts are helpful.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Cheers&amp;nbsp;&amp;nbsp;&lt;IMG src="https://community.fabric.microsoft.com/html/badge_icons/SU18_powerbi_badge.png" alt="Datanaut" width="64" height="64" border="0" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2019 20:13:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/818819#M5526</guid>
      <dc:creator>AlB</dc:creator>
      <dc:date>2019-10-15T20:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Add values at missing dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/819417#M5537</link>
      <description>&lt;P&gt;Thanks again for all your help and quick replies&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92178" data-lia-user-login="AlB" class="lia-mention lia-mention-user"&gt;AlB&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can see that it is working in your pbix.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately it still not working in my file.&lt;/P&gt;&lt;P&gt;My original file is called StockImport and has 505.167 rows.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I created a new table called StockHistory using the following DAX formula:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;The result is a new table Stockhistory which is exactly the same as the StockImport file and contains 505.167 rows.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea what goes wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 08:12:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/819417#M5537</guid>
      <dc:creator>peterschuller</dc:creator>
      <dc:date>2019-10-16T08:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: Add values at missing dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/820064#M5558</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="177967" data-lia-user-login="peterschuller" class="lia-mention lia-mention-user"&gt;peterschuller&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I had a quick look at the file. There are relationships. If you delete them or make them inactive i believe it works (the resulting table has then around 7 million rows)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Please mark the question solved when done and consider giving kudos if posts are helpful.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Cheers&amp;nbsp;&amp;nbsp;&lt;IMG src="https://community.fabric.microsoft.com/html/badge_icons/SU18_powerbi_badge.png" alt="Datanaut" width="64" height="64" border="0" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 20:01:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/820064#M5558</guid>
      <dc:creator>AlB</dc:creator>
      <dc:date>2019-10-16T20:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: Add values at missing dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/3214815#M117355</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92178" data-lia-user-login="AlB" class="lia-mention lia-mention-user"&gt;AlB&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;For personal enrichment, could you clarify how this piece of code is working? In the sample file that you share the above code works as intended, but when I tried to incorporate it into my own PBI, sometimes it's not generating a date&lt;BR /&gt;&lt;BR /&gt;e.g. in the table below - for unclear reasons - 2023-04-26 was not generated&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Present in original table&lt;/TD&gt;&lt;TD&gt;Generated by your code&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2023-04-18&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2023-04-19&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2023-04-20&lt;/TD&gt;&lt;TD&gt;False&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2023-04-21&lt;/TD&gt;&lt;TD&gt;False&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2023-04-22&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2023-04-23&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2023-04-24&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2023-04-25&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;2023-04-26&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;False&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;False&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2023-04-27&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2023-04-28&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2023-04-29&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2023 03:52:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/3214815#M117355</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-05-02T03:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: Add values at missing dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/3423946#M129664</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92178" data-lia-user-login="AlB" class="lia-mention lia-mention-user"&gt;AlB&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Thanks for sharing.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have a similar issue with the script applied not working,&amp;nbsp;I also have no active relationships on the table.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Is it possible that the script does not work when e.g. pulling from a query?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2023 09:16:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/3423946#M129664</guid>
      <dc:creator>miggy46</dc:creator>
      <dc:date>2023-09-11T09:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Add values at missing dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/3423969#M129667</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="615119" data-lia-user-login="miggy46" class="lia-mention lia-mention-user"&gt;miggy46&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Right-click on the relationship icon (or line) and choose Properties.&amp;nbsp; In the window&amp;nbsp;that pops up there will be a checkbox&amp;nbsp;around&amp;nbsp; the bottom to toggle the relationship active/inactive &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;TABLE style="height: 100px; width: 100%; border-collapse: collapse; border-style: groove; border-color: #0c1c49; background-color: #00675f;" border="0" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 15px;"&gt;
&lt;TD width="15.961305925030231%" style="width: 92px; height: 15px;"&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD width="84.03869407496977%" style="width: 485px; height: 15px; text-align: left;"&gt;&lt;FONT color="#FFFFFF"&gt;&lt;SPAN&gt;&lt;STRONG&gt;Please accept the solution when done and consider &lt;FONT color="#FF9900"&gt;giving a thumbs up if posts are helpful.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT color="#FFFFFF"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt; &lt;/FONT&gt;&lt;BR /&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="4.5" color="#FF99CC"&gt;Contact me privately for support with any larger-scale BI needs, tutoring, etc.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2023 09:16:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-values-at-missing-dates/m-p/3423969#M129667</guid>
      <dc:creator>AlB</dc:creator>
      <dc:date>2023-09-11T09:16:40Z</dc:date>
    </item>
  </channel>
</rss>

