<?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: Churn rate by tenure group and age group in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Churn-rate-by-tenure-group-and-age-group/m-p/3183475#M115167</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490244" data-lia-user-login="ejafarov" class="lia-mention lia-mention-user"&gt;ejafarov&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you mean you want the measure results to be affected by the slicer?&lt;/P&gt;
&lt;P&gt;You can use &lt;A href="https://learn.microsoft.com/en-us/dax/allselected-function-dax" target="_self"&gt;ALLSELECTED ()&lt;/A&gt; function.&lt;/P&gt;
&lt;P&gt;Please refer to the following documents for more information.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.sqlbi.com/articles/introducing-allselected-in-dax/" target="_blank" rel="noopener"&gt;Introducing ALLSELECTED in DAX - SQLBI&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.mssqltips.com/sqlservertip/5417/calculating-employee-attrition-rate-with-dax-part-1/" target="_blank"&gt;Calculating Employee Attrition Rate with DAX – Part 1 (mssqltips.com)&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Desktop/Customer-Churn-Rate/m-p/181950" target="_blank" rel="noopener"&gt;Customer Churn Rate - Microsoft Power BI Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/DAX-Commands-and-Tips/Churn-Rate-Measure/m-p/750366" target="_blank" rel="noopener"&gt;Churn Rate Measure - Microsoft Power BI Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post  &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution &lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 12 Apr 2023 08:19:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-04-12T08:19:36Z</dc:date>
    <item>
      <title>Churn rate by tenure group and age group</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Churn-rate-by-tenure-group-and-age-group/m-p/3172336#M114385</link>
      <description>&lt;P&gt;Dear Power BI Community,&lt;/P&gt;&lt;P&gt;I hope this message finds you well. I am currently working on a project where I need to calculate the churn rate for combinations of tenure and age groups in Power BI. I have multiple measures that find employee count for active employees and employees 12 months before the selected date, for each combination of tenure groups and age groups.&lt;/P&gt;&lt;P&gt;My goal is to find the churn rate (turnover) for each combination of tenure and age groups for active employees and employees 12 months before the selected date.&lt;/P&gt;&lt;P&gt;Here are the measures I have:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;ActiveEmployeeCount:&lt;/LI&gt;&lt;LI&gt;EmployeeCount12MonthsBefore&lt;/LI&gt;&lt;LI&gt;Employee count&amp;nbsp; left during 12 months&amp;nbsp;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I need help creating a measure to calculate the churn rate and then display the results in a matrix visualization.&lt;/P&gt;&lt;P&gt;I have tried the following DAX formula to calculate the churn rate, but I would appreciate it if someone could confirm whether it's correct or suggest an alternative method:&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 17:34:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Churn-rate-by-tenure-group-and-age-group/m-p/3172336#M114385</guid>
      <dc:creator>ejafarov</dc:creator>
      <dc:date>2023-04-04T17:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: Churn rate by tenure group and age group</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Churn-rate-by-tenure-group-and-age-group/m-p/3172386#M114391</link>
      <description>&lt;P&gt;Measure one Filtered =&lt;/P&gt;&lt;P&gt;CALCULATE (&lt;/P&gt;&lt;P&gt;[Cnt_Active_AgeGr],&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Tenure Bucket for active] = 'Join of age and tenure'[Tenure Group]),&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Age Bucket for active] ='Join of age and tenure'[Age Group])&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;Measure 2 Filtered =&lt;/P&gt;&lt;P&gt;CALCULATE (&lt;/P&gt;&lt;P&gt;[Cnt_LY_AgeGr],&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Tenure Bucket for active] = 'Join of age and tenure'[Tenure Group]),&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Age Bucket for active] ='Join of age and tenure'[Age Group])&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;Measure 3 Filtered =&lt;/P&gt;&lt;P&gt;CALCULATE (&lt;/P&gt;&lt;P&gt;[Cnt_Active_TenGr],&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Tenure Bucket for active] = 'Join of age and tenure'[Tenure Group]),&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Age Bucket for active] ='Join of age and tenure'[Age Group])&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;Measure 4 Filtered =&lt;/P&gt;&lt;P&gt;CALCULATE (&lt;/P&gt;&lt;P&gt;[Cnt_LY_TenureGr],&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Tenure Bucket for active] = 'Join of age and tenure'[Tenure Group]),&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Age Bucket for active] = 'Join of age and tenure'[Age Group]&lt;/P&gt;&lt;P&gt;Measure one Filtered =&lt;/P&gt;&lt;P&gt;CALCULATE (&lt;/P&gt;&lt;P&gt;[Cnt_Active_AgeGr],&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Tenure Bucket for active] = 'Join of age and tenure'[Tenure Group]),&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Age Bucket for active] ='Join of age and tenure'[Age Group])&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;Measure 2 Filtered =&lt;/P&gt;&lt;P&gt;CALCULATE (&lt;/P&gt;&lt;P&gt;[Cnt_LY_AgeGr],&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Tenure Bucket for active] = 'Join of age and tenure'[Tenure Group]),&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Age Bucket for active] ='Join of age and tenure'[Age Group])&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;Measure 3 Filtered =&lt;/P&gt;&lt;P&gt;CALCULATE (&lt;/P&gt;&lt;P&gt;[Cnt_Active_TenGr],&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Tenure Bucket for active] = 'Join of age and tenure'[Tenure Group]),&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Age Bucket for active] ='Join of age and tenure'[Age Group])&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;Measure 4 Filtered =&lt;/P&gt;&lt;P&gt;CALCULATE (&lt;/P&gt;&lt;P&gt;[Cnt_LY_TenureGr],&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Tenure Bucket for active] = 'Join of age and tenure'[Tenure Group]),&lt;/P&gt;&lt;P&gt;FILTER ('Join of age and tenure', [Age Bucket for active] = 'Join of age and tenure'[Age Group])&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 18:18:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Churn-rate-by-tenure-group-and-age-group/m-p/3172386#M114391</guid>
      <dc:creator>ejafarov</dc:creator>
      <dc:date>2023-04-04T18:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: Churn rate by tenure group and age group</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Churn-rate-by-tenure-group-and-age-group/m-p/3181059#M115000</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490244" data-lia-user-login="ejafarov" class="lia-mention lia-mention-user"&gt;ejafarov&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try this:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure one Filtered =

CALCULATE (

[Cnt_Active_AgeGr],

FILTER (All('Join of age and tenure'), MAX('Join of age and tenure'[Tenure Bucket for active] )= MAX('Join of age and tenure'[Tenure Group]) &amp;amp;&amp;amp;

MAX('Join of age and tenure[Age Bucket for active]) =MAX('Join of age and tenure'[Age Group])

)&lt;/LI-CODE&gt;
&lt;P&gt;If the above one can't help you get the desired result, please provide some&amp;nbsp;&lt;STRONG&gt;sample data&lt;/STRONG&gt;&amp;nbsp;in your tables (&lt;STRONG&gt;exclude&amp;nbsp;sensitive&amp;nbsp;data&lt;/STRONG&gt;) with&amp;nbsp;&lt;STRONG&gt;Text&lt;/STRONG&gt;&amp;nbsp;format and your&amp;nbsp;&lt;STRONG&gt;expected result&lt;/STRONG&gt;&amp;nbsp;with backend logic and special examples.&amp;nbsp;&lt;STRONG&gt;It is better&lt;/STRONG&gt;&amp;nbsp;if you can share a&amp;nbsp;&lt;STRONG&gt;simplified&lt;/STRONG&gt;&amp;nbsp;pbix file.&amp;nbsp;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post  &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution &lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 05:58:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Churn-rate-by-tenure-group-and-age-group/m-p/3181059#M115000</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-11T05:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Churn rate by tenure group and age group</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Churn-rate-by-tenure-group-and-age-group/m-p/3183340#M115152</link>
      <description>&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for the unclear format. I am adding the sample table from my file.&lt;/P&gt;&lt;P&gt;Currently, I have measures to calculate the count of employees for age group and tenure group separately. However, I need a DAX measure that will consider the selected filter (e.g., 31.12.2022) and calculate the active employee count by a combination of age group and tenure group. Ultimately, I want to find the churn rate based on this data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please explain me steps or dax?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;ID&lt;/TD&gt;&lt;TD&gt;Start Date&lt;/TD&gt;&lt;TD&gt;Resignation date&lt;/TD&gt;&lt;TD&gt;Birth Date&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;19&lt;/TD&gt;&lt;TD&gt;25/02/2009&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;07/02/1985&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;37&lt;/TD&gt;&lt;TD&gt;11/05/2012&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;24/12/1980&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;980&lt;/TD&gt;&lt;TD&gt;01/03/2017&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;24/12/1992&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1677&lt;/TD&gt;&lt;TD&gt;15/04/2022&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;18/06/1981&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;990&lt;/TD&gt;&lt;TD&gt;20/12/2021&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;09/07/1987&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1259&lt;/TD&gt;&lt;TD&gt;03/06/2019&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;09/02/1986&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;912&lt;/TD&gt;&lt;TD&gt;31/10/2016&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;19/01/1988&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1216&lt;/TD&gt;&lt;TD&gt;11/02/2019&lt;/TD&gt;&lt;TD&gt;28/12/2022&lt;/TD&gt;&lt;TD&gt;25/09/1994&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1171&lt;/TD&gt;&lt;TD&gt;01/10/2018&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;11/04/1995&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1540&lt;/TD&gt;&lt;TD&gt;10/06/2021&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;22/11/1979&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1256&lt;/TD&gt;&lt;TD&gt;01/05/2019&lt;/TD&gt;&lt;TD&gt;14/01/2022&lt;/TD&gt;&lt;TD&gt;07/10/1986&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1245&lt;/TD&gt;&lt;TD&gt;17/01/2022&lt;/TD&gt;&lt;TD&gt;12/05/2022&lt;/TD&gt;&lt;TD&gt;07/10/1986&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1664&lt;/TD&gt;&lt;TD&gt;01/03/2022&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;26/01/1993&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1395&lt;/TD&gt;&lt;TD&gt;06/03/2020&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;15/06/1977&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1057&lt;/TD&gt;&lt;TD&gt;01/12/2017&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;09/05/1996&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1362&lt;/TD&gt;&lt;TD&gt;10/01/2020&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;12/01/1990&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1082&lt;/TD&gt;&lt;TD&gt;05/02/2018&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;06/06/1995&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1252&lt;/TD&gt;&lt;TD&gt;20/05/2019&lt;/TD&gt;&lt;TD&gt;05/05/2022&lt;/TD&gt;&lt;TD&gt;23/08/1985&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1422&lt;/TD&gt;&lt;TD&gt;01/07/2020&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;27/05/1988&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1775&lt;/TD&gt;&lt;TD&gt;16/12/2022&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;05/01/1999&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1488&lt;/TD&gt;&lt;TD&gt;05/01/2021&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;29/01/1994&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1401&lt;/TD&gt;&lt;TD&gt;13/03/2020&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;02/06/1966&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;85&lt;/TD&gt;&lt;TD&gt;01/02/2013&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;08/12/1990&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;671&lt;/TD&gt;&lt;TD&gt;14/09/2016&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;29/03/1982&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1092&lt;/TD&gt;&lt;TD&gt;02/04/2018&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;26/05/1995&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1560&lt;/TD&gt;&lt;TD&gt;01/07/2021&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;27/09/1999&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1779&lt;/TD&gt;&lt;TD&gt;19/12/2022&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;20/03/2001&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;290&lt;/TD&gt;&lt;TD&gt;24/08/2015&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;06/11/1991&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1634&lt;/TD&gt;&lt;TD&gt;09/12/2021&lt;/TD&gt;&lt;TD&gt;09/03/2022&lt;/TD&gt;&lt;TD&gt;11/01/1997&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1695&lt;/TD&gt;&lt;TD&gt;25/05/2022&lt;/TD&gt;&lt;TD&gt;09/09/2022&lt;/TD&gt;&lt;TD&gt;14/04/2001&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1479&lt;/TD&gt;&lt;TD&gt;01/12/2020&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;30/01/1991&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1534&lt;/TD&gt;&lt;TD&gt;01/06/2021&lt;/TD&gt;&lt;TD&gt;06/06/2022&lt;/TD&gt;&lt;TD&gt;08/12/1982&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1358&lt;/TD&gt;&lt;TD&gt;08/01/2020&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;23/04/1993&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Wed, 12 Apr 2023 06:45:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Churn-rate-by-tenure-group-and-age-group/m-p/3183340#M115152</guid>
      <dc:creator>ejafarov</dc:creator>
      <dc:date>2023-04-12T06:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: Churn rate by tenure group and age group</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Churn-rate-by-tenure-group-and-age-group/m-p/3183475#M115167</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490244" data-lia-user-login="ejafarov" class="lia-mention lia-mention-user"&gt;ejafarov&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you mean you want the measure results to be affected by the slicer?&lt;/P&gt;
&lt;P&gt;You can use &lt;A href="https://learn.microsoft.com/en-us/dax/allselected-function-dax" target="_self"&gt;ALLSELECTED ()&lt;/A&gt; function.&lt;/P&gt;
&lt;P&gt;Please refer to the following documents for more information.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.sqlbi.com/articles/introducing-allselected-in-dax/" target="_blank" rel="noopener"&gt;Introducing ALLSELECTED in DAX - SQLBI&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.mssqltips.com/sqlservertip/5417/calculating-employee-attrition-rate-with-dax-part-1/" target="_blank"&gt;Calculating Employee Attrition Rate with DAX – Part 1 (mssqltips.com)&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Desktop/Customer-Churn-Rate/m-p/181950" target="_blank" rel="noopener"&gt;Customer Churn Rate - Microsoft Power BI Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/DAX-Commands-and-Tips/Churn-Rate-Measure/m-p/750366" target="_blank" rel="noopener"&gt;Churn Rate Measure - Microsoft Power BI Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post  &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution &lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 08:19:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Churn-rate-by-tenure-group-and-age-group/m-p/3183475#M115167</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-12T08:19:36Z</dc:date>
    </item>
  </channel>
</rss>

