<?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 Iterative average of growth ratio in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Iterative-average-of-growth-ratio/m-p/2870710#M92613</link>
    <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this &lt;A href="https://vub-my.sharepoint.com/:u:/g/personal/kenneth_goossens_vub_be/EdU0VwWR1CVIigwFEydhVoYBA6_aeI2k-kzPlpiA9B_Baw?e=BSBVY7" target="_blank" rel="noopener"&gt;file&lt;/A&gt; I'm trying to calculate survival rates of cohortes for the Belgian popualtion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the visualisation you can find 2 tables with 2 alternative versions for the calculation of the measure. Both are correct for a specific year, but I'm not getting the desired value for the total&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;For example, for cohort 1_0_44084 this should be 104.86%&lt;/P&gt;&lt;P&gt;i.e. average of :&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;98.89&lt;/TD&gt;&lt;TD&gt;98.78&lt;/TD&gt;&lt;TD&gt;93.81&lt;/TD&gt;&lt;TD&gt;109.8&lt;/TD&gt;&lt;TD&gt;135.63&lt;/TD&gt;&lt;TD&gt;104.1&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;97.84&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;The first measure (i.e.&amp;nbsp;&lt;SPAN&gt;Average survival rate)&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;isn't getting the desired result because the numerator and denominator aren't being iterated in the AVERAGEX function&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Average survival rate = 
VAR HuidigeLeeftijd = MAX('Ruwe data Tellingen StatBel'[Leeftijd])
VAR VorigeLeeftijd = MAX('Ruwe data Tellingen StatBel'[Leeftijd]) - 1
VAR HuidigGeslacht = MAX('Ruwe data Tellingen StatBel'[Geslacht 0/1])
VAR HuidigGemeente = MAX('Ruwe data Tellingen StatBel'[Hoogste Refnis-code van gemeente])
VAR CohorteHuidig = HuidigeLeeftijd&amp;amp;"_"&amp;amp;HuidigGeslacht&amp;amp;"_"&amp;amp;HuidigGemeente
VAR CohorteVorig = VorigeLeeftijd&amp;amp;"_"&amp;amp;HuidigGeslacht&amp;amp;"_"&amp;amp;HuidigGemeente
VAR AantalHuidig = CALCULATE(
    SUM('Ruwe data Tellingen StatBel'[Aantal]),
    'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteHuidig
)
VAR AantalVorig = CALCULATE(
    SUM('Ruwe data Tellingen StatBel'[Aantal]),
    'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteVorig,
    SAMEPERIODLASTYEAR('Date'[Date])
)
VAR SurvivalRate = AantalHuidig/AantalVorig
RETURN
AVERAGEX( 
    SUMMARIZE(
        'Ruwe data Tellingen StatBel',
        'Date'[Year],
        'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)]
    ),
    SurvivalRate
)&lt;/LI-CODE&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;However, when I add these parts in the AVERAGEX-function the total returns infinity (for measure &lt;SPAN&gt;Average survival rate 2)&lt;/SPAN&gt;. I'm not completely sure why this happens.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Average survival rate 2 = 
VAR HuidigeLeeftijd = MAX('Ruwe data Tellingen StatBel'[Leeftijd])
VAR VorigeLeeftijd = MAX('Ruwe data Tellingen StatBel'[Leeftijd]) - 1
VAR HuidigGeslacht = MAX('Ruwe data Tellingen StatBel'[Geslacht 0/1])
VAR HuidigGemeente = MAX('Ruwe data Tellingen StatBel'[Hoogste Refnis-code van gemeente])
VAR CohorteHuidig = HuidigeLeeftijd&amp;amp;"_"&amp;amp;HuidigGeslacht&amp;amp;"_"&amp;amp;HuidigGemeente
VAR CohorteVorig = VorigeLeeftijd&amp;amp;"_"&amp;amp;HuidigGeslacht&amp;amp;"_"&amp;amp;HuidigGemeente
VAR AantalHuidig = CALCULATE(
    SUM('Ruwe data Tellingen StatBel'[Aantal]),
    'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteHuidig
)
VAR AantalVorig = CALCULATE(
    SUM('Ruwe data Tellingen StatBel'[Aantal]),
    'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteVorig,
    SAMEPERIODLASTYEAR('Date'[Date])
)
VAR SurvivalRate = AantalHuidig/AantalVorig
RETURN
AVERAGEX(
    VALUES ('Date'[Year]),
    CALCULATE(
        SUM('Ruwe data Tellingen StatBel'[Aantal]),
        'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteHuidig
    )
    /
    CALCULATE(
        SUM('Ruwe data Tellingen StatBel'[Aantal]),
        'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteVorig,
        SAMEPERIODLASTYEAR('Date'[Date])
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is someone able to explain what happens in the calculation of&amp;nbsp;&lt;SPAN&gt;Average survival rate 2 when returning infinity? And even better, can someone adapt the measure so it returns for example&amp;nbsp;104.86% for cohort 1_0_44084?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Kenneth&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Oct 2022 12:51:46 GMT</pubDate>
    <dc:creator>kegoosse</dc:creator>
    <dc:date>2022-10-28T12:51:46Z</dc:date>
    <item>
      <title>Iterative average of growth ratio</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Iterative-average-of-growth-ratio/m-p/2870710#M92613</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this &lt;A href="https://vub-my.sharepoint.com/:u:/g/personal/kenneth_goossens_vub_be/EdU0VwWR1CVIigwFEydhVoYBA6_aeI2k-kzPlpiA9B_Baw?e=BSBVY7" target="_blank" rel="noopener"&gt;file&lt;/A&gt; I'm trying to calculate survival rates of cohortes for the Belgian popualtion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the visualisation you can find 2 tables with 2 alternative versions for the calculation of the measure. Both are correct for a specific year, but I'm not getting the desired value for the total&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;For example, for cohort 1_0_44084 this should be 104.86%&lt;/P&gt;&lt;P&gt;i.e. average of :&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;98.89&lt;/TD&gt;&lt;TD&gt;98.78&lt;/TD&gt;&lt;TD&gt;93.81&lt;/TD&gt;&lt;TD&gt;109.8&lt;/TD&gt;&lt;TD&gt;135.63&lt;/TD&gt;&lt;TD&gt;104.1&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;97.84&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;The first measure (i.e.&amp;nbsp;&lt;SPAN&gt;Average survival rate)&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;isn't getting the desired result because the numerator and denominator aren't being iterated in the AVERAGEX function&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Average survival rate = 
VAR HuidigeLeeftijd = MAX('Ruwe data Tellingen StatBel'[Leeftijd])
VAR VorigeLeeftijd = MAX('Ruwe data Tellingen StatBel'[Leeftijd]) - 1
VAR HuidigGeslacht = MAX('Ruwe data Tellingen StatBel'[Geslacht 0/1])
VAR HuidigGemeente = MAX('Ruwe data Tellingen StatBel'[Hoogste Refnis-code van gemeente])
VAR CohorteHuidig = HuidigeLeeftijd&amp;amp;"_"&amp;amp;HuidigGeslacht&amp;amp;"_"&amp;amp;HuidigGemeente
VAR CohorteVorig = VorigeLeeftijd&amp;amp;"_"&amp;amp;HuidigGeslacht&amp;amp;"_"&amp;amp;HuidigGemeente
VAR AantalHuidig = CALCULATE(
    SUM('Ruwe data Tellingen StatBel'[Aantal]),
    'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteHuidig
)
VAR AantalVorig = CALCULATE(
    SUM('Ruwe data Tellingen StatBel'[Aantal]),
    'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteVorig,
    SAMEPERIODLASTYEAR('Date'[Date])
)
VAR SurvivalRate = AantalHuidig/AantalVorig
RETURN
AVERAGEX( 
    SUMMARIZE(
        'Ruwe data Tellingen StatBel',
        'Date'[Year],
        'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)]
    ),
    SurvivalRate
)&lt;/LI-CODE&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;However, when I add these parts in the AVERAGEX-function the total returns infinity (for measure &lt;SPAN&gt;Average survival rate 2)&lt;/SPAN&gt;. I'm not completely sure why this happens.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Average survival rate 2 = 
VAR HuidigeLeeftijd = MAX('Ruwe data Tellingen StatBel'[Leeftijd])
VAR VorigeLeeftijd = MAX('Ruwe data Tellingen StatBel'[Leeftijd]) - 1
VAR HuidigGeslacht = MAX('Ruwe data Tellingen StatBel'[Geslacht 0/1])
VAR HuidigGemeente = MAX('Ruwe data Tellingen StatBel'[Hoogste Refnis-code van gemeente])
VAR CohorteHuidig = HuidigeLeeftijd&amp;amp;"_"&amp;amp;HuidigGeslacht&amp;amp;"_"&amp;amp;HuidigGemeente
VAR CohorteVorig = VorigeLeeftijd&amp;amp;"_"&amp;amp;HuidigGeslacht&amp;amp;"_"&amp;amp;HuidigGemeente
VAR AantalHuidig = CALCULATE(
    SUM('Ruwe data Tellingen StatBel'[Aantal]),
    'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteHuidig
)
VAR AantalVorig = CALCULATE(
    SUM('Ruwe data Tellingen StatBel'[Aantal]),
    'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteVorig,
    SAMEPERIODLASTYEAR('Date'[Date])
)
VAR SurvivalRate = AantalHuidig/AantalVorig
RETURN
AVERAGEX(
    VALUES ('Date'[Year]),
    CALCULATE(
        SUM('Ruwe data Tellingen StatBel'[Aantal]),
        'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteHuidig
    )
    /
    CALCULATE(
        SUM('Ruwe data Tellingen StatBel'[Aantal]),
        'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteVorig,
        SAMEPERIODLASTYEAR('Date'[Date])
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is someone able to explain what happens in the calculation of&amp;nbsp;&lt;SPAN&gt;Average survival rate 2 when returning infinity? And even better, can someone adapt the measure so it returns for example&amp;nbsp;104.86% for cohort 1_0_44084?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Kenneth&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2022 12:51:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Iterative-average-of-growth-ratio/m-p/2870710#M92613</guid>
      <dc:creator>kegoosse</dc:creator>
      <dc:date>2022-10-28T12:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Iterative average of growth ratio</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Iterative-average-of-growth-ratio/m-p/2870816#M92622</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="120370" data-lia-user-login="kegoosse" class="lia-mention lia-mention-user"&gt;kegoosse&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;would you please copy/pase the dax code?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2022 12:44:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Iterative-average-of-growth-ratio/m-p/2870816#M92622</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-10-28T12:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: Iterative average of growth ratio</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Iterative-average-of-growth-ratio/m-p/2880738#M93239</link>
      <description>&lt;P&gt;&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;- The Dax-code has been added for a while.&lt;BR /&gt;Do you have some other advice perhaps? The question has been online for a while, without any feedback. I assume I need to simplify the situation to get help?&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 15:59:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Iterative-average-of-growth-ratio/m-p/2880738#M93239</guid>
      <dc:creator>kegoosse</dc:creator>
      <dc:date>2022-11-02T15:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: Iterative average of growth ratio</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Iterative-average-of-growth-ratio/m-p/2880921#M93250</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="120370" data-lia-user-login="kegoosse" class="lia-mention lia-mention-user"&gt;kegoosse&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Apologies for that. I haven't been notified for this change. You may try the following&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Average survival rate 2 =
AVERAGEX (
    VALUES ( 'Date'[Year] ),
    CALCULATE (
        VAR HuidigeLeeftijd =
            MAX ( 'Ruwe data Tellingen StatBel'[Leeftijd] )
        VAR VorigeLeeftijd =
            MAX ( 'Ruwe data Tellingen StatBel'[Leeftijd] ) - 1
        VAR HuidigGeslacht =
            MAX ( 'Ruwe data Tellingen StatBel'[Geslacht 0/1] )
        VAR HuidigGemeente =
            MAX ( 'Ruwe data Tellingen StatBel'[Hoogste Refnis-code van gemeente] )
        VAR CohorteHuidig = HuidigeLeeftijd &amp;amp; "_" &amp;amp; HuidigGeslacht &amp;amp; "_" &amp;amp; HuidigGemeente
        VAR CohorteVorig = VorigeLeeftijd &amp;amp; "_" &amp;amp; HuidigGeslacht &amp;amp; "_" &amp;amp; HuidigGemeente
        VAR AantalHuidig =
            CALCULATE (
                SUM ( 'Ruwe data Tellingen StatBel'[Aantal] ),
                'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteHuidig
            )
        VAR AantalVorig =
            CALCULATE (
                SUM ( 'Ruwe data Tellingen StatBel'[Aantal] ),
                'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteVorig,
                SAMEPERIODLASTYEAR ( 'Date'[Date] )
            )
        VAR SurvivalRate = AantalHuidig / AantalVorig
        RETURN
            CALCULATE (
                SUM ( 'Ruwe data Tellingen StatBel'[Aantal] ),
                'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteHuidig
            )
                / CALCULATE (
                    SUM ( 'Ruwe data Tellingen StatBel'[Aantal] ),
                    'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteVorig,
                    SAMEPERIODLASTYEAR ( 'Date'[Date] )
                )
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 02 Nov 2022 17:02:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Iterative-average-of-growth-ratio/m-p/2880921#M93250</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-11-02T17:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: Iterative average of growth ratio</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Iterative-average-of-growth-ratio/m-p/2882376#M93333</link>
      <description>&lt;P&gt;&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;&lt;BR /&gt;&lt;BR /&gt;Thanks for the help. The suggested formula however returns the same result as the original one, i.e. correct values when reporting for a specific year, but returning infinty for the total value. Do you have any other suggestions?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 09:10:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Iterative-average-of-growth-ratio/m-p/2882376#M93333</guid>
      <dc:creator>kegoosse</dc:creator>
      <dc:date>2022-11-03T09:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: Iterative average of growth ratio</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Iterative-average-of-growth-ratio/m-p/2882410#M93336</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="120370" data-lia-user-login="kegoosse" class="lia-mention lia-mention-user"&gt;kegoosse&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try with DIVIDE function&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Average survival rate 2 =
AVERAGEX (
    VALUES ( 'Date'[Year] ),
    CALCULATE (
        VAR HuidigeLeeftijd =
            MAX ( 'Ruwe data Tellingen StatBel'[Leeftijd] )
        VAR VorigeLeeftijd =
            MAX ( 'Ruwe data Tellingen StatBel'[Leeftijd] ) - 1
        VAR HuidigGeslacht =
            MAX ( 'Ruwe data Tellingen StatBel'[Geslacht 0/1] )
        VAR HuidigGemeente =
            MAX ( 'Ruwe data Tellingen StatBel'[Hoogste Refnis-code van gemeente] )
        VAR CohorteHuidig = HuidigeLeeftijd &amp;amp; "_" &amp;amp; HuidigGeslacht &amp;amp; "_" &amp;amp; HuidigGemeente
        VAR CohorteVorig = VorigeLeeftijd &amp;amp; "_" &amp;amp; HuidigGeslacht &amp;amp; "_" &amp;amp; HuidigGemeente
        VAR AantalHuidig =
            CALCULATE (
                SUM ( 'Ruwe data Tellingen StatBel'[Aantal] ),
                'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteHuidig
            )
        VAR AantalVorig =
            CALCULATE (
                SUM ( 'Ruwe data Tellingen StatBel'[Aantal] ),
                'Ruwe data Tellingen StatBel'[Cohorte (leeftijd_geslacht_stad)] = CohorteVorig,
                SAMEPERIODLASTYEAR ( 'Date'[Date] )
            )
        VAR SurvivalRate =
            DIVIDE ( AantalHuidig, AantalVorig )
        RETURN
            SurvivalRate
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 09:25:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Iterative-average-of-growth-ratio/m-p/2882410#M93336</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-11-03T09:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Iterative average of growth ratio</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Iterative-average-of-growth-ratio/m-p/2882534#M93345</link>
      <description>&lt;P&gt;&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;- Thanks, this version worked as desired!&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 10:01:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Iterative-average-of-growth-ratio/m-p/2882534#M93345</guid>
      <dc:creator>kegoosse</dc:creator>
      <dc:date>2022-11-03T10:01:18Z</dc:date>
    </item>
  </channel>
</rss>

