<?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: DAX NB in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-NB/m-p/2406443#M63199</link>
    <description>&lt;P&gt;for month +2 is it :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Nbr_VHS_ScheduledSynchronized remining till next month = CALCULATE(SUM('db_infocentre PX_installCR'[nb_box]), filter('db_infocentre PX_intervention', OR('db_infocentre PX_intervention'[status]="IN_PROGRESS" , 'db_infocentre PX_intervention'[status]="SCHEDULED") &amp;amp;&amp;amp; 'db_infocentre PX_intervention'[Date] &amp;gt;= Today() &amp;amp;&amp;amp; 'db_infocentre PX_intervention'[date] &amp;lt;= eomonth(Today(), 2)))&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 21 Mar 2022 10:36:00 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-03-21T10:36:00Z</dc:date>
    <item>
      <title>DAX NB</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-NB/m-p/2406035#M63164</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I have a problem:&lt;BR /&gt;on power bi I have a table that contains several columns and among these columns, I have a measure that determines the number of vehicles planned/synchronized.&lt;BR /&gt;Here is the formula for measuring the number of planned/synchronized vehicles:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;Nbr_VHS_ScheduledSynchronized = CALCULATE(SUM('db_infocentre PX_installCR'[nb_box]), OR('db_infocentre PX_intervention'[status]="IN_PROGRESS" , 'db_infocentre PX_intervention'[status]="SCHEDULED"))&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;My goal is to determine from today's date the number of vehicles planned/synchronized in the current month, in month m+1, in month m+2, m+3, m+4 and m+x. I want to determine them from the current date and add them in my table as a column. So if in 2 months I consult my table, I want it to show me these numbers according to the date in which we are.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 08:07:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-NB/m-p/2406035#M63164</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-21T08:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: DAX NB</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-NB/m-p/2406205#M63177</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , based on what I got so far, new measures like &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nbr_VHS_ScheduledSynchronized remining for this month = CALCULATE(SUM('db_infocentre PX_installCR'[nb_box]), filter('db_infocentre PX_intervention', OR('db_infocentre PX_intervention'[status]="IN_PROGRESS" , 'db_infocentre PX_intervention'[status]="SCHEDULED") &amp;amp;&amp;amp; 'db_infocentre PX_intervention'[Date] &amp;gt;= Today() &amp;amp;&amp;amp; 'db_infocentre PX_intervention'[date] &amp;lt;= eomonth(Today(), 0)))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nbr_VHS_ScheduledSynchronized remining till next month = CALCULATE(SUM('db_infocentre PX_installCR'[nb_box]), filter('db_infocentre PX_intervention', OR('db_infocentre PX_intervention'[status]="IN_PROGRESS" , 'db_infocentre PX_intervention'[status]="SCHEDULED") &amp;amp;&amp;amp; 'db_infocentre PX_intervention'[Date] &amp;gt;= Today() &amp;amp;&amp;amp; 'db_infocentre PX_intervention'[date] &amp;lt;= eomonth(Today(), 1)))&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 09:08:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-NB/m-p/2406205#M63177</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-03-21T09:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: DAX NB</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-NB/m-p/2406225#M63178</link>
      <description>&lt;P&gt;Okay thank you. What means&amp;nbsp; :&amp;nbsp;&lt;SPAN&gt;eomonth(Today(), 1)))&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 09:13:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-NB/m-p/2406225#M63178</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-21T09:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: DAX NB</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-NB/m-p/2406320#M63190</link>
      <description>&lt;P&gt;&lt;SPAN&gt;EOMONTH returns the date in datetime format of the last day of the month before or after a specified number of months.&lt;BR /&gt;So&amp;nbsp;eomonth(Today(), 1) returns the last date of the next month with respect to the current month.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 09:44:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-NB/m-p/2406320#M63190</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-21T09:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: DAX NB</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-NB/m-p/2406418#M63197</link>
      <description>&lt;P&gt;Okay, and if I want to do &lt;SPAN&gt;Nbr_VHS_ScheduledSynchronized remining month&lt;/SPAN&gt;+x, do you have idea of how can I do?&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 10:29:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-NB/m-p/2406418#M63197</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-21T10:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: DAX NB</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-NB/m-p/2406443#M63199</link>
      <description>&lt;P&gt;for month +2 is it :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Nbr_VHS_ScheduledSynchronized remining till next month = CALCULATE(SUM('db_infocentre PX_installCR'[nb_box]), filter('db_infocentre PX_intervention', OR('db_infocentre PX_intervention'[status]="IN_PROGRESS" , 'db_infocentre PX_intervention'[status]="SCHEDULED") &amp;amp;&amp;amp; 'db_infocentre PX_intervention'[Date] &amp;gt;= Today() &amp;amp;&amp;amp; 'db_infocentre PX_intervention'[date] &amp;lt;= eomonth(Today(), 2)))&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 10:36:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-NB/m-p/2406443#M63199</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-21T10:36:00Z</dc:date>
    </item>
  </channel>
</rss>

