<?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: Customer Performance Status M.O.M in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Customer-Performance-Status-M-O-M/m-p/1377342#M25135</link>
    <description>&lt;P&gt;Hey &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your response. Yes it is month on month. But, this is not what i want to achieve.&amp;nbsp;&lt;BR /&gt;May be I missed highlighting my point clearly, here by performance here i meant the payment history, whether it is paid or not paid.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I want to show status of payment on m.o.m basis against lan, industry, branch or any other variable. Example ( July- Bounce, Aug- Cleared, Sep- Cleared) . This is just an example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please look at my file once you've time.&lt;/P&gt;</description>
    <pubDate>Thu, 17 Sep 2020 11:08:14 GMT</pubDate>
    <dc:creator>AnkitKukreja</dc:creator>
    <dc:date>2020-09-17T11:08:14Z</dc:date>
    <item>
      <title>Customer Performance Status M.O.M</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Customer-Performance-Status-M-O-M/m-p/1377244#M25129</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I’ve created the below relationship, and I want to extract performance from the table&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Bounce&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;DPD&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to my master data (ECGLS), both have customer identification no as Account Number.&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;I want to get m.o.m performance of the customer in the matrix as per user needs against the Account_Number, Industry, Sales Manager, branch , etc i.e. all the data available in ECGLS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I actually want to achieve is something like this and also want my data to reflect changes as per the filters or if any other variable is used by the user instead of loan number like (Industry, Sales Manager, Branch, etc).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I've sharing the pbix file as well. Please let me know the right approach to achieve this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/drive/folders/1yQKq8mM-8AcOsODJhaibOxoCcu7qVzkY?usp=sharing" target="_blank" rel="noopener"&gt;https://drive.google.com/drive/folders/1yQKq8mM-8AcOsODJhaibOxoCcu7qVzkY?usp=sharing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks Ankit&lt;/P&gt;&lt;DIV class="lightbox-wrapper"&gt;&lt;DIV class="meta"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2020 09:27:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Customer-Performance-Status-M-O-M/m-p/1377244#M25129</guid>
      <dc:creator>AnkitKukreja</dc:creator>
      <dc:date>2020-09-17T09:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: Customer Performance Status M.O.M</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Customer-Performance-Status-M-O-M/m-p/1377290#M25132</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="251452" data-lia-user-login="AnkitKukreja" class="lia-mention lia-mention-user"&gt;AnkitKukreja&lt;/a&gt; , is MOM is Month on month. Then you can use time intelligence with date table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example&lt;/P&gt;
&lt;P&gt;MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))&lt;BR /&gt;last MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],-1,MONTH)))&lt;BR /&gt;last month Sales = CALCULATE(SUM(Sales[Sales Amount]),previousmonth('Date'[Date]))&lt;BR /&gt;last MTD (complete) Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(ENDOFMONTH(dateadd('Date'[Date],-1,MONTH))))&lt;BR /&gt;previous month value = CALCULATE(sum(''Table''[total hours value]),previousmonth('Date'[Date]))&lt;/P&gt;
&lt;P&gt;diff = [MTD Sales]-[last MTD Sales]&lt;BR /&gt;diff % = divide([MTD Sales]-[last MTD Sales],[last MTD Sales])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer : &lt;BR /&gt;&lt;A href="https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions" target="_blank"&gt;https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Appreciate your Kudos.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2020 09:39:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Customer-Performance-Status-M-O-M/m-p/1377290#M25132</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-09-17T09:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Customer Performance Status M.O.M</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Customer-Performance-Status-M-O-M/m-p/1377342#M25135</link>
      <description>&lt;P&gt;Hey &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your response. Yes it is month on month. But, this is not what i want to achieve.&amp;nbsp;&lt;BR /&gt;May be I missed highlighting my point clearly, here by performance here i meant the payment history, whether it is paid or not paid.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I want to show status of payment on m.o.m basis against lan, industry, branch or any other variable. Example ( July- Bounce, Aug- Cleared, Sep- Cleared) . This is just an example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please look at my file once you've time.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Sep 2020 11:08:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Customer-Performance-Status-M-O-M/m-p/1377342#M25135</guid>
      <dc:creator>AnkitKukreja</dc:creator>
      <dc:date>2020-09-17T11:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Customer Performance Status M.O.M</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Customer-Performance-Status-M-O-M/m-p/1379189#M25195</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used the below measure, though i'm getting the correct results.&lt;/P&gt;&lt;P&gt;Would love to know any another way to achieve the same. If possible from all the experts here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CALCULATE( SELECTEDVALUE( Bounce[BounceStatus] , “Not Presented” ) ,&lt;BR /&gt;CROSSFILTER( ECGLS[Account Number] , Bounce[Account_Number] , Both),&lt;BR /&gt;USERELATIONSHIP( ‘Calendar’[Date] , Bounce[schdate] ))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Ankit&lt;/P&gt;</description>
      <pubDate>Fri, 18 Sep 2020 05:16:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Customer-Performance-Status-M-O-M/m-p/1379189#M25195</guid>
      <dc:creator>AnkitKukreja</dc:creator>
      <dc:date>2020-09-18T05:16:39Z</dc:date>
    </item>
  </channel>
</rss>

