<?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: How to Automatically Move Unfinished Projects to the Next Month in Power BI in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4214227#M57329</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/797318"&gt;@amaral_diego&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you may use multiple tables in your calculation and your data model is complex with inactive relationships.&lt;/P&gt;
&lt;P&gt;Here I suggest you to show us your data model and what tables look like. You can share a sample file with us and show us a screenshot with your error or the result you want. This will make it easier for us to find the solution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
    <pubDate>Thu, 03 Oct 2024 07:58:40 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-10-03T07:58:40Z</dc:date>
    <item>
      <title>How to Automatically Move Unfinished Projects to the Next Month in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4202095#M56690</link>
      <description>&lt;P&gt;&lt;SPAN&gt;In Power BI, I have a table that counts the number of projects that need to be completed by their due date. However, there is a need for projects that are not completed within the specified month to automatically move to the next month. For example, a project scheduled for January, if not completed by the due date, should automatically move to February, and so on, until I update it in my data source. Is there a way to do this in Power BI?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2024 17:22:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4202095#M56690</guid>
      <dc:creator>amaral_diego</dc:creator>
      <dc:date>2024-09-30T17:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to Automatically Move Unfinished Projects to the Next Month in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4202140#M56692</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Here’s a general approach to get you started&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Add a Status Column: Ensure your data source has a column indicating whether a project is completed or not.&lt;/STRONG&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Create a Calculated Column&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Here’s an example:&lt;/P&gt;
&lt;DIV class="" tabindex="-1"&gt;
&lt;PRE&gt;&lt;CODE class=""&gt;AdjustedDueDate = 
IF(
    [Status] = "Completed", 
    [DueDate], 
    EOMONTH([DueDate], 1) + 1
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;3.&amp;nbsp;Create a Measure for Counting Projects&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here’s an example measure:&lt;/P&gt;
&lt;DIV class="" tabindex="-1"&gt;
&lt;PRE&gt;&lt;CODE class=""&gt;ProjectsDueThisMonth = 
CALCULATE(
    COUNTROWS(ProjectsTable),
    FILTER(
        ProjectsTable,
        YEAR([AdjustedDueDate]) = YEAR(TODAY()) &amp;amp;&amp;amp;
        MONTH([AdjustedDueDate]) = MONTH(TODAY())
    )
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;CODE class=""&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Mon, 30 Sep 2024 17:43:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4202140#M56692</guid>
      <dc:creator>Kaviraj11</dc:creator>
      <dc:date>2024-09-30T17:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to Automatically Move Unfinished Projects to the Next Month in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4202155#M56695</link>
      <description>&lt;P&gt;Remember that MAX( ) can take two parameters, not just one.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2024 17:47:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4202155#M56695</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-09-30T17:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to Automatically Move Unfinished Projects to the Next Month in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4210100#M57097</link>
      <description>&lt;P&gt;I've tried this way below&lt;/P&gt;&lt;P&gt;Created this Calculated Column&lt;BR /&gt;&lt;BR /&gt;DataAjustada =&lt;BR /&gt;VAR DataInicial = f_Projetos[Termino]&lt;BR /&gt;VAR MesesAdicionados = DATEDIFF(DataInicial, TODAY(), MONTH) + 1&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;DataInicial &amp;lt; TODAY(),&lt;BR /&gt;EDATE(DataInicial, MesesAdicionados),&lt;BR /&gt;DataInicial&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;and this measure below&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;ProjetosAtrasadosPorMes =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;COUNTROWS(&lt;BR /&gt;FILTER(&lt;BR /&gt;f_Projetos,&lt;BR /&gt;f_Projetos[Termino] &amp;lt; TODAY() &amp;amp;&amp;amp;&lt;BR /&gt;f_Projetos[Status] &amp;lt;&amp;gt; "Completo" &amp;amp;&amp;amp;&lt;BR /&gt;f_Projetos[Status] &amp;lt;&amp;gt; "Despriorizado" &amp;amp;&amp;amp;&lt;BR /&gt;f_Projetos[DataAjustada] &amp;gt;= EDATE(f_Projetos[Termino], 1)&lt;BR /&gt;)&lt;BR /&gt;),&lt;BR /&gt;USERELATIONSHIP(d_Calendario[Date], f_Projetos[DataAjustada])&lt;BR /&gt;)&lt;BR /&gt;It's almost working, the thing is, it showing the information on November column,&amp;nbsp;&lt;BR /&gt;In my case, it should appear in October. It should move the overdue project to the following month, and here in my case the overdue projects are from September.&lt;BR /&gt;&lt;BR /&gt;Could help me to solve this&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Oct 2024 19:33:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4210100#M57097</guid>
      <dc:creator>amaral_diego</dc:creator>
      <dc:date>2024-10-01T19:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to Automatically Move Unfinished Projects to the Next Month in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4210140#M57099</link>
      <description>&lt;P&gt;Can you update with this&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here’s a revised version of your&lt;SPAN&gt;&amp;nbsp;calculated column:&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV class="" tabindex="-1"&gt;
&lt;PRE&gt;&lt;CODE class=""&gt;DataAjustada =
VAR DataInicial = f_Projetos[Termino]
VAR MesesAdicionados = DATEDIFF(DataInicial, TODAY(), MONTH) + 1
RETURN
IF(
    DataInicial &amp;lt; TODAY(),
    EOMONTH(DataInicial, MesesAdicionados - 1) + 1,
    DataInicial
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 01 Oct 2024 19:48:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4210140#M57099</guid>
      <dc:creator>Kaviraj11</dc:creator>
      <dc:date>2024-10-01T19:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to Automatically Move Unfinished Projects to the Next Month in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4212069#M57155</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi, I’ve tried using this code, but unfortunately, the issue persists. It continues to show the information for November instead of October.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2024 12:36:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4212069#M57155</guid>
      <dc:creator>amaral_diego</dc:creator>
      <dc:date>2024-10-02T12:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to Automatically Move Unfinished Projects to the Next Month in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4214227#M57329</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/797318"&gt;@amaral_diego&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you may use multiple tables in your calculation and your data model is complex with inactive relationships.&lt;/P&gt;
&lt;P&gt;Here I suggest you to show us your data model and what tables look like. You can share a sample file with us and show us a screenshot with your error or the result you want. This will make it easier for us to find the solution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2024 07:58:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4214227#M57329</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-10-03T07:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to Automatically Move Unfinished Projects to the Next Month in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4218319#M57465</link>
      <description>&lt;P&gt;I'm sent to you the screenshot's of the datamodel in two parts,&amp;nbsp;the "Termino" column is the date the project should be completed.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="part1.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1178007iE84C4A1DCB145081/image-size/large?v=v2&amp;amp;px=999" role="button" title="part1.png" alt="part1.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="part2.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1178008i6CAAF0D676CE89DE/image-size/large?v=v2&amp;amp;px=999" role="button" title="part2.png" alt="part2.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2024 13:43:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4218319#M57465</guid>
      <dc:creator>amaral_diego</dc:creator>
      <dc:date>2024-10-04T13:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to Automatically Move Unfinished Projects to the Next Month in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4232233#M57728</link>
      <description>&lt;P&gt;I also have tried with M language, with this function below&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(AjustarData as nullable date) as nullable date =&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;let&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DataAtual = DateTime.LocalNow(),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;NovaData = if AjustarData &amp;lt;&amp;gt; null and AjustarData &amp;lt; DataAtual then Date.AddMonths(AjustarData, 1) else AjustarData&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;in&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;NovaData&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Then I go to "add column" and then "Invoke Custom Function"&lt;BR /&gt;&lt;BR /&gt;So I select the function I created and then it gives me the option to enter a date, or select a column. If I go by the column or select the column that has the end date "Termino", it creates the column but without being in the date format and with "Error" in all the lines. This is the code that is in the column.&lt;BR /&gt;&lt;BR /&gt;= Table.AddColumn(#"Erros Substituídos", "Nova Data - Conclusão", each fnAjustarDataConclusao([Termino]))&lt;BR /&gt;&lt;BR /&gt;Is there any way to adjust this, so that it creates the dates for the following month automatically?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 17:15:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4232233#M57728</guid>
      <dc:creator>amaral_diego</dc:creator>
      <dc:date>2024-10-07T17:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to Automatically Move Unfinished Projects to the Next Month in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4241054#M57828</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/797318"&gt;@amaral_diego&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you trying to delay the end date of a project whose due status is not yet Complete by one month?&lt;/P&gt;
&lt;P&gt;Please try code as below to create a calculated column.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;AjustarData = 
VAR _DATEDIFF = DATEDIFF('Table'[Termino],TODAY(),Day)
RETURN
IF('Table'[Status] = "Complete",'Table'[Termino],IF('Table'[Termino]&amp;lt;TODAY(),EOMONTH(TODAY(),-1)+DAY('Table'[Termino]),'Table'[Termino]))&lt;/LI-CODE&gt;
&lt;P&gt;Result of my sample is as below.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vrzhoumsft_0-1728897234214.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1182661i501E6A944EDAF23A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vrzhoumsft_0-1728897234214.png" alt="vrzhoumsft_0-1728897234214.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2024 09:14:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4241054#M57828</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-10-14T09:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to Automatically Move Unfinished Projects to the Next Month in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4241534#M57837</link>
      <description>&lt;P&gt;Hi, with this code is almost helped me, it worked to send all projects to the next moth, but, for example, now I've 6 projects delayed from september that is now send to october, although I've one deleyed in october and he still in octorber, is possible to sent him do november?&lt;/P&gt;&lt;P&gt;If not, it's ok, I'll acept thi one as solution, thanks a lot.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Oct 2024 13:57:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4241534#M57837</guid>
      <dc:creator>amaral_diego</dc:creator>
      <dc:date>2024-10-14T13:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to Automatically Move Unfinished Projects to the Next Month in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4242173#M57846</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/797318"&gt;@amaral_diego&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I update the measure, you can try this one.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;AjustarData =
VAR _Today =
    TODAY ()
VAR _DATEDIFF =
    DATEDIFF ( 'Table'[Termino], TODAY (), DAY )
VAR _DATE1 =
    EOMONTH ( TODAY (), -1 ) + DAY ( 'Table'[Termino] )
VAR _DATE2 =
    EOMONTH ( _DATE1, 0 ) + DAY ( 'Table'[Termino] )
RETURN
    IF (
        'Table'[Status] = "Complete",
        'Table'[Termino],
        IF (
            'Table'[Termino] &amp;lt; _Today,
            IF ( _DATE1 &amp;lt; TODAY (), _DATE2, _DATE1 ),
            'Table'[Termino]
        )
    )&lt;/LI-CODE&gt;
&lt;P&gt;Result of my sample is as below.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vrzhoumsft_0-1728957114818.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1183058i4D12FDCB9FFF3013/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vrzhoumsft_0-1728957114818.png" alt="vrzhoumsft_0-1728957114818.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 01:52:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4242173#M57846</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-10-15T01:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to Automatically Move Unfinished Projects to the Next Month in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4243317#M57866</link>
      <description>&lt;P&gt;It worked, thanks a lot!&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 15:16:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-Automatically-Move-Unfinished-Projects-to-the-Next-Month/m-p/4243317#M57866</guid>
      <dc:creator>amaral_diego</dc:creator>
      <dc:date>2024-10-15T15:16:44Z</dc:date>
    </item>
  </channel>
</rss>

