<?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 Blocks of 6-month Periods in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-Blocks-of-6-month-Periods/m-p/3301364#M123151</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="455570" data-lia-user-login="SerenaFan93" class="lia-mention lia-mention-user"&gt;SerenaFan93&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;So far, to my knowledge, this may not be fully dynamic.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Community Support Team_Binbin Yu&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;, then please consider&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 26 Jun 2023 01:53:46 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-06-26T01:53:46Z</dc:date>
    <item>
      <title>Running Total Blocks of 6-month Periods</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-Blocks-of-6-month-Periods/m-p/3275403#M121495</link>
      <description>&lt;P&gt;Hello! I'm trying to create a calculated column that keeps a running total of blocks of 6-month periods. For example, given the data below, I would want the dates to be formatted as such:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;03/15/2020 - 08/19/2020 – 1&lt;/P&gt;&lt;P&gt;12/15/2020 – 05/10/2021 – 2&lt;/P&gt;&lt;P&gt;11/29/2021 – 04/27/2022 – 3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas? Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Event Date&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;8/12/2020&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;8/19/2020&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;12/15/2020&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;2/4/2021&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;4/17/2021&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;5/10/2021&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;11/29/2021&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;3/2/2022&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;3/6/2022&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;4/26/2022&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;4/27/2022&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Thu, 08 Jun 2023 20:57:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-Blocks-of-6-month-Periods/m-p/3275403#M121495</guid>
      <dc:creator>SerenaFan93</dc:creator>
      <dc:date>2023-06-08T20:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total Blocks of 6-month Periods</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-Blocks-of-6-month-Periods/m-p/3278941#M121734</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="455570" data-lia-user-login="SerenaFan93" class="lia-mention lia-mention-user"&gt;SerenaFan93&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please try to create a new column with below dax formula:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Column =
VAR _date = [Event Date]
VAR tmp1 =
    CALENDAR ( DATE ( 2020, 3, 15 ), DATE ( 2020, 8, 19 ) )
VAR tmp2 =
    CALENDAR ( DATE ( 2020, 12, 15 ), DATE ( 2021, 5, 10 ) )
VAR tmp3 =
    CALENDAR ( DATE ( 2021, 11, 29 ), DATE ( 2022, 4, 27 ) )
RETURN
    SWITCH ( TRUE (), _date IN tmp1, 1, _date IN tmp2, 2, _date IN tmp3, 3 )
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Please refer the attached .pbix file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Community Support Team_Binbin Yu&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;, then please consider&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jun 2023 07:31:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-Blocks-of-6-month-Periods/m-p/3278941#M121734</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-06-12T07:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total Blocks of 6-month Periods</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-Blocks-of-6-month-Periods/m-p/3281987#M121918</link>
      <description>&lt;P&gt;Thank you v-binbinyu-msft! I understand how you set this up, but t&lt;SPAN&gt;&lt;SPAN class=""&gt;his was an example of one customer. The dates will differ for each customer - any thoughts on how this could be dynamic?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Jun 2023 14:57:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-Blocks-of-6-month-Periods/m-p/3281987#M121918</guid>
      <dc:creator>SerenaFan93</dc:creator>
      <dc:date>2023-06-13T14:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total Blocks of 6-month Periods</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-Blocks-of-6-month-Periods/m-p/3301364#M123151</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="455570" data-lia-user-login="SerenaFan93" class="lia-mention lia-mention-user"&gt;SerenaFan93&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;So far, to my knowledge, this may not be fully dynamic.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Community Support Team_Binbin Yu&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;, then please consider&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 01:53:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-Blocks-of-6-month-Periods/m-p/3301364#M123151</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-06-26T01:53:46Z</dc:date>
    </item>
  </channel>
</rss>

