<?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: Life Cycle Calculation in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2813117#M89085</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="433015" data-lia-user-login="v-yueyunzh-msft" class="lia-mention lia-mention-user"&gt;v-yueyunzh-msft&lt;/a&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank for your quick response. It looks great. Unfortunately&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;I get a new column with function. And I can't open your Pbix because is searching for a Excelfile.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I will attach my original dataset in the opneing post.&lt;/SPAN&gt;&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;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 03 Oct 2022 07:07:04 GMT</pubDate>
    <dc:creator>Deem</dc:creator>
    <dc:date>2022-10-03T07:07:04Z</dc:date>
    <item>
      <title>Life Cycle Calculation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2812125#M89053</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to get the following output in PowerBI. I've read a different post with a solved solution but unfortunately&amp;nbsp; I can't reproduce the solution without an error. I've asked a question about it in that forum post but unfortunately nobody answers it. Therefore I've opened this new post and I hope someone can help me with a working solution. Old post:&amp;nbsp;&lt;A href="https://community.powerbi.com/t5/DAX-Commands-and-Tips/Asset-Life-Cycle-Calculation/m-p/1755894#M36676" target="_blank" rel="noopener"&gt;Solved: Asset Life Cycle Calculation - Microsoft Power BI Community&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need PowerBI to create the following table. Every AssetNo has to be replaced after it's e&lt;SPAN&gt;xpected Life&lt;/SPAN&gt;&amp;nbsp;for a fixed amount of costs. The next step would be to integrate a index so the replacements cost wil be indexed every year.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The calculated tabled is based on the following dataset. For example every 5 year AssetNo A has to be replaced for a value of € 1.000,--.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;AssetNo&amp;nbsp;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;endyear&amp;nbsp;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;life&amp;nbsp;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Assetcost&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;2018&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;€ 1.000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;2019&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;€ 2.000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;TD&gt;2020&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;€ 1.500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;D&lt;/TD&gt;&lt;TD&gt;2017&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;€ 1.000&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've build the following function that will&amp;nbsp;provide a list of replacement years for each last replacement year. This gives an error.&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;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
output = List.Generate(
    ()=&amp;gt;[firstValue],
    each _&amp;lt;= [endyear], each _+[life],
    each _
)
in
output&lt;/LI-CODE&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This function creates a list but comes withe an error when I expand the list to new rows.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I expand to new rows I get the following error. &lt;STRONG&gt;"Expression.Error: We cannot apply field access to the type Number."&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;When I place a fixed value for endyear (2050) and life (5) then it works fine. I can live wit a fixed value but the value live comes from the dataset.&lt;/SPAN&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
output = List.Generate(
    ()=&amp;gt;[firstValue],
    each _&amp;lt;= 2050, each _+5,
    each _
)
in
output&lt;/LI-CODE&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output is with&amp;nbsp;tunnecessary columns deleted is:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does somebody know a solotion for this problem or a different method in PowerBI. Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Damon&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="Asset LifeCycle calculation_list orig.pbix" href="https://1drv.ms/u/s!AvqOdziejqaXluYnp2YAh2Bpk5SYqA?e=oALPaS" target="_blank" rel="noopener"&gt;https://1drv.ms/u/s!AvqOdziejqaXluYnp2YAh2Bpk5SYqA?e=oALPaS&lt;/A&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, 03 Oct 2022 07:44:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2812125#M89053</guid>
      <dc:creator>Deem</dc:creator>
      <dc:date>2022-10-03T07:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Life Cycle Calculation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2812186#M89057</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="440020" data-lia-user-login="Deem" class="lia-mention lia-mention-user"&gt;Deem&lt;/a&gt;&amp;nbsp;Here is a DAX solution. Basically &lt;A href="https://community.powerbi.com/t5/Quick-Measures-Gallery/Blowout/m-p/1391913#M629" target="_self"&gt;Blowout!&lt;/A&gt; PBIX is attached below sig.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Blowout! = 
    VAR __Table =
        GENERATE(
        'Table',
            VAR __MinYear = [endyear]
            VAR __increment = [life]
        RETURN GENERATESERIES(__MinYear,__MinYear + __increment * 3,__increment)
    )
RETURN
    __Table&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2022 20:47:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2812186#M89057</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-10-02T20:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Life Cycle Calculation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2813021#M89081</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="440020" data-lia-user-login="Deem" class="lia-mention lia-mention-user"&gt;Deem&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I test it with your data, Here are the steps you can refer to :&lt;/P&gt;
&lt;P&gt;(1)This is my test data:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;(2)We can Add a custom colimn in Power BI Query Editor:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;(x)=&amp;gt; List.Generate(()=&amp;gt;x[Last Replaced],(y)=&amp;gt;y&amp;lt;=Number.From(x[End of Year]) ,(y)=&amp;gt;y+Number.From(x[Expected Life])   )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;(3)Then we can click "Expand to Mew Rows".&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;(3)Then we aplly the data to the Power BI Desktop and we can put the field in the visual and we will meet your need:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;If this method does not meet your needs, you can provide us with your special &lt;STRONG&gt;sample data&lt;/STRONG&gt; and the &lt;STRONG&gt;desired output sample&lt;/STRONG&gt; data in the form of &lt;STRONG&gt;tables&lt;/STRONG&gt;, so that we can better help you solve the problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Aniya Zhang&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt; it as the solution&lt;/EM&gt;&amp;nbsp;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;
&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;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 06:31:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2813021#M89081</guid>
      <dc:creator>v-yueyunzh-msft</dc:creator>
      <dc:date>2022-10-03T06:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: Life Cycle Calculation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2813117#M89085</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="433015" data-lia-user-login="v-yueyunzh-msft" class="lia-mention lia-mention-user"&gt;v-yueyunzh-msft&lt;/a&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank for your quick response. It looks great. Unfortunately&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;I get a new column with function. And I can't open your Pbix because is searching for a Excelfile.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I will attach my original dataset in the opneing post.&lt;/SPAN&gt;&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;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 07:07:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2813117#M89085</guid>
      <dc:creator>Deem</dc:creator>
      <dc:date>2022-10-03T07:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Life Cycle Calculation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2813146#M89088</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="440020" data-lia-user-login="Deem" class="lia-mention lia-mention-user"&gt;Deem&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can try to delete the "each" in the enter box :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Then you can get the list .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Aniya Zhang&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;it as the solution&lt;/EM&gt;&amp;nbsp;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, 03 Oct 2022 07:20:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2813146#M89088</guid>
      <dc:creator>v-yueyunzh-msft</dc:creator>
      <dc:date>2022-10-03T07:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: Life Cycle Calculation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2813240#M89096</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="433015" data-lia-user-login="v-yueyunzh-msft" class="lia-mention lia-mention-user"&gt;v-yueyunzh-msft&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry but removing each doesn't work. At the bottom of my original post I've added a Onedrive downloadlink of my pbix . Can you pleas have a look at it. Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 07:49:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2813240#M89096</guid>
      <dc:creator>Deem</dc:creator>
      <dc:date>2022-10-03T07:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: Life Cycle Calculation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2813306#M89101</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wil try this solution later this day on my big dataset. I've tried it and it works on the test dataset. I will let you know if it works fine. Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 08:07:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2813306#M89101</guid>
      <dc:creator>Deem</dc:creator>
      <dc:date>2022-10-03T08:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: Life Cycle Calculation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2813356#M89107</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="440020" data-lia-user-login="Deem" class="lia-mention lia-mention-user"&gt;Deem&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I download your .pbix file , For your problem, Here are my answers:&lt;/P&gt;
&lt;P&gt;(1)At present, the value you modified is correct, and you can return the correct table, where 2050 means that the year of the generation stops in 2050, and the deadline for the generation is not specified in your table, so you need to replace the value with 2050.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;(2)For the [life] field , you can edit the M language in&amp;nbsp; "Aangepaste kolom toegevoegd" step:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;= Table.AddColumn(#"Type gewijzigd", "Aangepast", (x)=&amp;gt; List.Generate(()=&amp;gt;x[endyear]+x[life],(y)=&amp;gt; y&amp;lt;=2050 , (y)=&amp;gt;y+x[life] )   )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Aniya Zhang&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt; it as the solution&lt;/EM&gt;&amp;nbsp;to help the other members find it more quickly&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 08:26:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2813356#M89107</guid>
      <dc:creator>v-yueyunzh-msft</dc:creator>
      <dc:date>2022-10-03T08:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Life Cycle Calculation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2814729#M89228</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;, your solutions works also fine. The only thing is that it generates much more new rows because of the incrementfactor then the solution of&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="433015" data-lia-user-login="v-yueyunzh-msft" class="lia-mention lia-mention-user"&gt;v-yueyunzh-msft&lt;/a&gt;. So I have chosen the solution of&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="433015" data-lia-user-login="v-yueyunzh-msft" class="lia-mention lia-mention-user"&gt;v-yueyunzh-msft&lt;/a&gt;&amp;nbsp;for my case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks for your quick replies!!&lt;span class="lia-unicode-emoji" title=":flexed_biceps:"&gt;💪&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":flexed_biceps:"&gt;💪&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 18:05:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Life-Cycle-Calculation/m-p/2814729#M89228</guid>
      <dc:creator>Deem</dc:creator>
      <dc:date>2022-10-03T18:05:11Z</dc:date>
    </item>
  </channel>
</rss>

