<?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: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2719868#M82892</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The measure you provided didn't work. blank result. even on its own and I didn't get any noticeable errors.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the 2nd visual i want # of Clients with 0 "activities" in the past 6 months&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 23 Aug 2022 10:06:22 GMT</pubDate>
    <dc:creator>Joseph_Hchaime</dc:creator>
    <dc:date>2022-08-23T10:06:22Z</dc:date>
    <item>
      <title>Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2719146#M82848</link>
      <description>&lt;P&gt;Hi I need to build two separate visuals and I need help with creating the measures for said visuals.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) Visual 1: Client Growth Rate.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The formula is:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;instead of Q1/Q2/Q3/Q4 I want to use Years.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Available Columns: Net Billed, Bill Issue Date (dd/mm/yyyy). Obviously the legend part is the easiest part.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I'm not able to achieve the CGR per year. Can someone help please?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Visual 2: I need to check for clients with no "activities" within the last 6 months dynamically and count them as "dormant clients"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table with activities and dates of each activity but it does not show zeros (i.e. clients with no activities).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a separate clients table. My theory is I can reference ALL the clients from the clients table and filter out those with no activities within the last 6 months but I'm not sure how to do it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help!!!&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 07:07:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2719146#M82848</guid>
      <dc:creator>Joseph_Hchaime</dc:creator>
      <dc:date>2022-08-23T07:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2719745#M82883</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="395167" data-lia-user-login="Joseph_Hchaime" class="lia-mention lia-mention-user"&gt;Joseph_Hchaime&lt;/a&gt;&amp;nbsp;, try this measure&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CGR % =
VAR vThisYear = SELECTEDVALUE('dimDate'[Year])

VAR vLastYear = vThisYear - 1

VAR vCCRThisYear =
    CALCULATE(
        SUM('Table'[Net Billed]),
        ALL('dimDate'),
        'dimDate'[Year] = vThisYear
    )

VAR vCCRLastYear =
    CALCULATE(
        SUM('Table'[Net Billed]),
        ALL('dimDate'),
        'dimDate'[Year] = vLastYear
    )

VAR vCGR = DIVIDE((vCCRThisYear - vCCRLastYear), vCCRLastYear)

RETURN vCGR&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For visual 2, what exactly do you mean when you say you need to "check for clients with no activities"? Does the visual need to list the clients with no activities? Or should it show the number of clients with no activities? How should the time period be selected? Should any time periods be displayed in the visual?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 09:29:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2719745#M82883</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-23T09:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2719868#M82892</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The measure you provided didn't work. blank result. even on its own and I didn't get any noticeable errors.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the 2nd visual i want # of Clients with 0 "activities" in the past 6 months&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 10:06:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2719868#M82892</guid>
      <dc:creator>Joseph_Hchaime</dc:creator>
      <dc:date>2022-08-23T10:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2719898#M82893</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="395167" data-lia-user-login="Joseph_Hchaime" class="lia-mention lia-mention-user"&gt;Joseph_Hchaime&lt;/a&gt;&amp;nbsp;, ok, you will need to provide more information for this forum to be able to help you.&lt;/P&gt;&lt;P&gt;What is the name of the table and field that you are using (or intend to use) for the X-axis on your chart visual?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 10:16:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2719898#M82893</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-23T10:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2719930#M82895</link>
      <description>&lt;P&gt;VW_Bills_Table (it's an SQL view that I'm directquerying) column name is Bills_Issue_Date (it's formatted as dd/mm/yyyy) but I can create bins for years right?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Revenue is a Measure in another "Measures Table". It's not a table/column, it's a calculated Measure called [Net Billed in USD].&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 10:26:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2719930#M82895</guid>
      <dc:creator>Joseph_Hchaime</dc:creator>
      <dc:date>2022-08-23T10:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2719965#M82899</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="395167" data-lia-user-login="Joseph_Hchaime" class="lia-mention lia-mention-user"&gt;Joseph_Hchaime&lt;/a&gt;&amp;nbsp;, this is what I have come up with.&lt;/P&gt;&lt;P&gt;Sample data&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Bills_Issue_Date&amp;nbsp;Net Billed&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;01 January 2020&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01 July 2020&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01 January 2021&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;2000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01 July 2021&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;777&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01 January 2022&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1234&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01 July 2022&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;2345&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[Net Billed in USD] measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Net Billed in USD = SUM('VW_Bills_Table'[Net Billed])&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[CGR %] measure (format:Percentage)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CGR % = 
VAR vThisYear = SELECTEDVALUE('VW_Bills_Table'[Bills_Issue_Date].[Year])

VAR vLastYear = vThisYear - 1

VAR vCCRThisYear =
    CALCULATE(
        [Net Billed in USD],
        ALL('VW_Bills_Table'),
        'VW_Bills_Table'[Bills_Issue_Date].[Year] = vThisYear
    )

VAR vCCRLastYear =
    CALCULATE(
        [Net Billed in USD],
        ALL('VW_Bills_Table'),
        'VW_Bills_Table'[Bills_Issue_Date].[Year] = vLastYear
    )

VAR vCGR = DIVIDE((vCCRThisYear - vCCRLastYear), vCCRLastYear)

RETURN vCGR&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Place a table visual on a report.&lt;/P&gt;&lt;P&gt;Add Year from the [Bills_Issue_Date] hierarchy into the table visual.&lt;/P&gt;&lt;P&gt;Add [Net Billed in USD] measure onto the table visual.&lt;/P&gt;&lt;P&gt;Add [CGR %] measure onto the tablew visual.&lt;/P&gt;&lt;P&gt;This gives me this result:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;The table visual can be changed to a chart visual.&lt;/P&gt;&lt;P&gt;Is this what you are after?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 10:49:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2719965#M82899</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-23T10:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720024#M82906</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Here is what I got&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 11:09:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720024#M82906</guid>
      <dc:creator>Joseph_Hchaime</dc:creator>
      <dc:date>2022-08-23T11:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720134#M82912</link>
      <description>&lt;P&gt;I even tried this variation of the statement:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CGR % = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;vThisYear&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'VW_Bills_Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Bill_Issue_Date Years]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;vLastYear&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;vThisYear&lt;/SPAN&gt;&lt;SPAN&gt; - &lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;vCCRThisYear&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Basic Measures'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[Net Billed in USD]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'VW_Bills_Table'&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'VW_Bills_Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Bill_Issue_Date Years]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;vThisYear&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;vCCRLastYear&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Basic Measures'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[Net Billed in USD]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'VW_Bills_Table'&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'VW_Bills_Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Bill_Issue_Date Years]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;vLastYear&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;vCGR&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt;((&lt;/SPAN&gt;&lt;SPAN&gt;vCCRThisYear&lt;/SPAN&gt;&lt;SPAN&gt; - &lt;/SPAN&gt;&lt;SPAN&gt;vCCRLastYear&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;vCCRLastYear&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt; &lt;SPAN&gt;vCGR&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;it didn't work.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 23 Aug 2022 11:59:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720134#M82912</guid>
      <dc:creator>Joseph_Hchaime</dc:creator>
      <dc:date>2022-08-23T11:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720195#M82915</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="395167" data-lia-user-login="Joseph_Hchaime" class="lia-mention lia-mention-user"&gt;Joseph_Hchaime&lt;/a&gt;&amp;nbsp;, that's odd. What items do you have in the Values section of your Table visual? This is what I have:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I notice in your measure you have&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;VAR vThisYear = SELECTEDVALUE('VW_Bills_Table'[Bills_Issue_Date])&lt;/LI-CODE&gt;&lt;P&gt;instead of&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;VAR vThisYear = SELECTEDVALUE('VW_Bills_Table'[Bills_Issue_Date].[Year])&lt;/LI-CODE&gt;&lt;P&gt;It needs to get the year, not the date.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 12:18:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720195#M82915</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-23T12:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720203#M82918</link>
      <description>&lt;P&gt;it won't let me. I get an error when i add .[Year] even though the column is formatted as Date but with no hierarchy&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 12:21:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720203#M82918</guid>
      <dc:creator>Joseph_Hchaime</dc:creator>
      <dc:date>2022-08-23T12:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720240#M82921</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="395167" data-lia-user-login="Joseph_Hchaime" class="lia-mention lia-mention-user"&gt;Joseph_Hchaime&lt;/a&gt;&amp;nbsp;, ok, make therse changes:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create a Calculated Column in Power BI for your table VW_Bills_Table&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;Bills_Issue_Date_Year = YEAR(VW_Bills_Table[Bills_Issue_Date])&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;Add the Bills_Issue_Date_Year column to the Values section of your Table visual, and make sure to set the column to Don't Summarize&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Change the measure [CGR %] to use the new column Bills_Issue_date_Year&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CGR % = 
VAR vThisYear = SELECTEDVALUE('VW_Bills_Table'[Bills_Issue_Date_Year])

VAR vLastYear = vThisYear - 1

VAR vCCRThisYear =
    CALCULATE(
        [Net Billed in USD],
        ALL('VW_Bills_Table'),
        'VW_Bills_Table'[Bills_Issue_Date_Year] = vThisYear
    )

VAR vCCRLastYear =
    CALCULATE(
        [Net Billed in USD],
        ALL('VW_Bills_Table'),
        'VW_Bills_Table'[Bills_Issue_Date_Year] = vLastYear
    )

VAR vCGR = DIVIDE((vCCRThisYear - vCCRLastYear), vCCRLastYear)

RETURN vCGR&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That should do it.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 12:34:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720240#M82921</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-23T12:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720305#M82928</link>
      <description>&lt;P&gt;Tried that. still not working. I can't use calculated columns as this will change my schema when i publish on the service and the gateway won't be able to refresh the data from the cloud sql&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 13:00:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720305#M82928</guid>
      <dc:creator>Joseph_Hchaime</dc:creator>
      <dc:date>2022-08-23T13:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720325#M82929</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="395167" data-lia-user-login="Joseph_Hchaime" class="lia-mention lia-mention-user"&gt;Joseph_Hchaime&lt;/a&gt;&amp;nbsp;, what do you mean it is not working? Please give details about what is going wrong.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you do not have a column for [Year] in your data model, how do you intend use [Year] as an X-axis on your chart visual?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 13:05:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720325#M82929</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-23T13:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720377#M82930</link>
      <description>&lt;P&gt;I tried creating "Bins" based on the bill_issue_date column in Years. I changed the DAX statement you sent me to reference the "bin" column instead of the bill_issue_date. It didn't work. it still gave me a blank result.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Screenshots below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Dax Code:&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CGR % = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;vThisYear&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'VW_Bills_Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Bill_Issue_Date_Year]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;vLastYear&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;vThisYear&lt;/SPAN&gt;&lt;SPAN&gt; - &lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;vCCRThisYear&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Basic Measures'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[Net Billed in USD]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'VW_Bills_Table'&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'VW_Bills_Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Bill_Issue_Date_Year]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;vThisYear&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;vCCRLastYear&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Basic Measures'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[Net Billed in USD]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'VW_Bills_Table'&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'VW_Bills_Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Bill_Issue_Date_Year]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;vLastYear&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;vCGR&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt;((&lt;/SPAN&gt;&lt;SPAN&gt;vCCRThisYear&lt;/SPAN&gt;&lt;SPAN&gt; - &lt;/SPAN&gt;&lt;SPAN&gt;vCCRLastYear&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;vCCRLastYear&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt; &lt;SPAN&gt;vCGR&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 23 Aug 2022 13:15:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720377#M82930</guid>
      <dc:creator>Joseph_Hchaime</dc:creator>
      <dc:date>2022-08-23T13:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720535#M82942</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="395167" data-lia-user-login="Joseph_Hchaime" class="lia-mention lia-mention-user"&gt;Joseph_Hchaime&lt;/a&gt;&amp;nbsp;, I have no idea what you are referring to when you said you have created "bins". There is no need to do that and I have not suggested that. If you are doing something weird with "bins" in conjunction with my suggested solution then I cannot help you, sorry.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[Edit: I haven't used Grouping/bins before in Power BI. I have now looked into it and amended my suggested solution using Grouping/bins. Please see my more recent post]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the measure you posted above, you are using a SUMX. You do not need to use a SUMX. Please use the measure I posted in my suggested solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To help me see what might be going wrong, please create these two new measures, place them on the table visual, and post&amp;nbsp; the results.&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;NetBilledThisYear =
VAR vThisYear = SELECTEDVALUE('VW_Bills_Table'[Bill_Issue_Date_Year])
RETURN
    CALCULATE(
        [Net Billed in USD],
        ALL('VW_Bills_Table'),
        'VW_Bills_Table'[Bill_Issue_Date_Year] = vThisYear
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and&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;NetBilledLastYear =
VAR vThisYear = SELECTEDVALUE('VW_Bills_Table'[Bill_Issue_Date_Year])

VAR vLastYear = vThisYear - 1

RETURN
    CALCULATE(
        [Net Billed in USD],
        ALL('VW_Bills_Table'),
        'VW_Bills_Table'[Bill_Issue_Date_Year] = vLastYear
    )&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;</description>
      <pubDate>Tue, 23 Aug 2022 14:56:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720535#M82942</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-23T14:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720608#M82952</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="395167" data-lia-user-login="Joseph_Hchaime" class="lia-mention lia-mention-user"&gt;Joseph_Hchaime&lt;/a&gt;&amp;nbsp;, ok I have got it working with Power BI's Grouping/binning functionality.&lt;/P&gt;&lt;P&gt;I created the group called Bills_Issue_Date_Years like this:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Add the Bins_Issue_Date_Years onto the table visual.&lt;/P&gt;&lt;P&gt;Then change the measure [CGR %] to this:&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;CGR % = 
VAR vThisYear = YEAR(MAX('VW_Bills_Table'[Bills_Issue_Date_Years]))

VAR vLastYear = vThisYear - 1

VAR vCCRThisYear =
    CALCULATE(
        [Net Billed in USD],
        ALL('VW_Bills_Table'),
        YEAR('VW_Bills_Table'[Bills_Issue_Date_Years]) = vThisYear
    )

VAR vCCRLastYear =
    CALCULATE(
        [Net Billed in USD],
        ALL('VW_Bills_Table'),
        YEAR('VW_Bills_Table'[Bills_Issue_Date_Years]) = vLastYear
    )

VAR vCGR = DIVIDE((vCCRThisYear - vCCRLastYear), vCCRLastYear)

RETURN vCGR&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;This gives me the same results that I got using a Calculated Column.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And using yoour data, these are the results I get:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 16:23:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2720608#M82952</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-23T16:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Two DAX formulas into visuals: 1)Client Growth Rate 2) Dormant Clients</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2725110#M83265</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="395167" data-lia-user-login="Joseph_Hchaime" class="lia-mention lia-mention-user"&gt;Joseph_Hchaime&lt;/a&gt;&amp;nbsp;, thanks for accepting my solution for "&lt;SPAN&gt;Visual 1: Client Growth Rate".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Could I suggest that you post your second question "Visual 2: I need to check for clients with no "activities" within the last 6 months" as a separate post, so that it can be answered and solved separately? A separate post will keep the two problems separate and make it easier for other members to find that are searching for how to solve a similar problem.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 07:09:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Two-DAX-formulas-into-visuals-1-Client-Growth-Rate-2-Dormant/m-p/2725110#M83265</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-25T07:09:10Z</dc:date>
    </item>
  </channel>
</rss>

