<?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: Maximum working day per month in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Maximum-working-day-per-month/m-p/1918467#M41575</link>
    <description>&lt;LI-CODE lang="csharp"&gt;[Monthly Max Business Day] = // calculated column
var CurrentMonth = T[Month]
var CurrentYear = T[Year]
var MonthlyMaxBusinessDay = 
    MAXX(
        filter(
            T,
            T[Month] = CurrentMonth
            &amp;amp;&amp;amp; T[Year] = CurrentYear
            &amp;amp;&amp;amp; T[Business Day] = 1
        ),
        T[Date]
    )
return
    MonthlyMaxBusinessDay&lt;/LI-CODE&gt;</description>
    <pubDate>Wed, 23 Jun 2021 21:42:22 GMT</pubDate>
    <dc:creator>daxer-almighty</dc:creator>
    <dc:date>2021-06-23T21:42:22Z</dc:date>
    <item>
      <title>Maximum working day per month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Maximum-working-day-per-month/m-p/1918391#M41573</link>
      <description>&lt;P&gt;Hello Team,&lt;BR /&gt;&lt;BR /&gt;I am working with my calendar table and&amp;nbsp;I need to enter the maximum day worked per month. I integrated a holiday data table in my data model and with that I get the Wordays column this month, but I am having a problem adding a column with the maximum day per month.&lt;BR /&gt;&lt;BR /&gt;thank a lot!&lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 20:00:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Maximum-working-day-per-month/m-p/1918391#M41573</guid>
      <dc:creator>Joshua_</dc:creator>
      <dc:date>2021-06-23T20:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: Maximum working day per month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Maximum-working-day-per-month/m-p/1918467#M41575</link>
      <description>&lt;LI-CODE lang="csharp"&gt;[Monthly Max Business Day] = // calculated column
var CurrentMonth = T[Month]
var CurrentYear = T[Year]
var MonthlyMaxBusinessDay = 
    MAXX(
        filter(
            T,
            T[Month] = CurrentMonth
            &amp;amp;&amp;amp; T[Year] = CurrentYear
            &amp;amp;&amp;amp; T[Business Day] = 1
        ),
        T[Date]
    )
return
    MonthlyMaxBusinessDay&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 23 Jun 2021 21:42:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Maximum-working-day-per-month/m-p/1918467#M41575</guid>
      <dc:creator>daxer-almighty</dc:creator>
      <dc:date>2021-06-23T21:42:22Z</dc:date>
    </item>
  </channel>
</rss>

