<?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 How to calculate default clients with a measure? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-default-clients-with-a-measure/m-p/1870313#M40081</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a Sales Table that shows the sale pay date and the date that the client in fact payed for the product, called "Sales Off".&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If today is greater than the pay date and the Sales Off cell is empty, it means that the client has default.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to build a measure that could show the amount default per client, how could I do that?&lt;/P&gt;</description>
    <pubDate>Fri, 28 May 2021 14:43:32 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-05-28T14:43:32Z</dc:date>
    <item>
      <title>How to calculate default clients with a measure?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-default-clients-with-a-measure/m-p/1870313#M40081</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a Sales Table that shows the sale pay date and the date that the client in fact payed for the product, called "Sales Off".&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If today is greater than the pay date and the Sales Off cell is empty, it means that the client has default.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to build a measure that could show the amount default per client, how could I do that?&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 14:43:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-default-clients-with-a-measure/m-p/1870313#M40081</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-05-28T14:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate default clients with a measure?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-default-clients-with-a-measure/m-p/1870330#M40085</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Your measure could be something like:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 

CALCULATE(
    sum('Sales Table'[Amunt]),
    FILTER(
        'Sales Table',
        'Sales Table'[sales Off] = BLANK() &amp;amp;&amp;amp;
        'Sales Table'[pay date] &amp;lt;  TODAY() 
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 28 May 2021 14:54:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-default-clients-with-a-measure/m-p/1870330#M40085</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2021-05-28T14:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate default clients with a measure?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-default-clients-with-a-measure/m-p/1870405#M40088</link>
      <description>&lt;P&gt;Simple and direct, thanks a lot bro!&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 16:10:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-default-clients-with-a-measure/m-p/1870405#M40088</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-05-28T16:10:14Z</dc:date>
    </item>
  </channel>
</rss>

