<?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: Sum of all month except one month in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-of-all-month-except-one-month/m-p/2636255#M77286</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="392943" data-lia-user-login="PBIBeginner2022" class="lia-mention lia-mention-user"&gt;PBIBeginner2022&lt;/a&gt; , if you have date,better to get using month year. You do not want jun when you are in August. &lt;/P&gt;
&lt;P&gt;CALCULATE(SUM(TPODeliveries[Delivered value in €]), TPODeliveries[Type] = "PO_Delivery" , eomonth(TPODeliveries[Month],0) &amp;lt;&amp;gt; eomonth(today(),-2)&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;of&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CALCULATE(SUM(TPODeliveries[Delivered value in €]), filter(TPODeliveries, TPODeliveries[Type] = "PO_Delivery" &amp;amp;&amp;amp;&amp;nbsp; eomonth(TPODeliveries[Month],0) &amp;lt;&amp;gt; eomonth(today(),-2)&amp;nbsp; ) )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In case you want use month name use format on top of eomonth(today(),-2)&lt;/P&gt;
&lt;P&gt;format(eomonth(today(),-2), "mmm-yyyy")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 13 Jul 2022 12:10:07 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2022-07-13T12:10:07Z</dc:date>
    <item>
      <title>Sum of all month except one month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-of-all-month-except-one-month/m-p/2635813#M77263</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a measure like this :&amp;nbsp;&lt;STRONG&gt;CALCULATE(SUM(TPODeliveries[Delivered value in €]), TPODeliveries[Type] = "PO_Delivery")&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This measure calculate the sum of &lt;STRONG&gt;Delivered value in € &lt;/STRONG&gt;for each month of the year. However I need to calculate this sum for all month except one month. I have a column which contain the month that I don't want sum in my formula. Do you know the DAX function to add to my formula in order to sum all month without the month that I don't want which in my other column ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2022 09:01:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-of-all-month-except-one-month/m-p/2635813#M77263</guid>
      <dc:creator>PBIBeginner2022</dc:creator>
      <dc:date>2022-07-13T09:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of all month except one month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-of-all-month-except-one-month/m-p/2636175#M77279</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="392943" data-lia-user-login="PBIBeginner2022" class="lia-mention lia-mention-user"&gt;PBIBeginner2022&lt;/a&gt; , Based on what I got &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;a measure like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CALCULATE(SUM(TPODeliveries[Delivered value in €]), TPODeliveries[Type] = "PO_Delivery" ,TPODeliveries[Month]&amp;nbsp; &amp;lt;&amp;gt; "Jan-2020" )&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2022 11:24:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-of-all-month-except-one-month/m-p/2636175#M77279</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-07-13T11:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of all month except one month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-of-all-month-except-one-month/m-p/2636181#M77280</link>
      <description>&lt;LI-CODE lang="markup"&gt;CALCULATE(SUM(TPODeliveries[Delivered value in €]), TPODeliveries[Type] = "PO_Delivery" , NOT TPODeliveries[Month] IN VALUES('Table'[Unwanted month]) )&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 13 Jul 2022 11:28:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-of-all-month-except-one-month/m-p/2636181#M77280</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-07-13T11:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of all month except one month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-of-all-month-except-one-month/m-p/2636235#M77283</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try your solution but the result is not that I want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want a measure like this photo :&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;</description>
      <pubDate>Wed, 13 Jul 2022 12:01:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-of-all-month-except-one-month/m-p/2636235#M77283</guid>
      <dc:creator>PBIBeginner2022</dc:creator>
      <dc:date>2022-07-13T12:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of all month except one month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-of-all-month-except-one-month/m-p/2636242#M77285</link>
      <description>&lt;P&gt;&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;I search a mesaure where i don't need to write the month that I don't need beacause next month the month will be different. I want never sum the month just before the last monh:&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;</description>
      <pubDate>Wed, 13 Jul 2022 12:04:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-of-all-month-except-one-month/m-p/2636242#M77285</guid>
      <dc:creator>PBIBeginner2022</dc:creator>
      <dc:date>2022-07-13T12:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of all month except one month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-of-all-month-except-one-month/m-p/2636255#M77286</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="392943" data-lia-user-login="PBIBeginner2022" class="lia-mention lia-mention-user"&gt;PBIBeginner2022&lt;/a&gt; , if you have date,better to get using month year. You do not want jun when you are in August. &lt;/P&gt;
&lt;P&gt;CALCULATE(SUM(TPODeliveries[Delivered value in €]), TPODeliveries[Type] = "PO_Delivery" , eomonth(TPODeliveries[Month],0) &amp;lt;&amp;gt; eomonth(today(),-2)&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;of&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CALCULATE(SUM(TPODeliveries[Delivered value in €]), filter(TPODeliveries, TPODeliveries[Type] = "PO_Delivery" &amp;amp;&amp;amp;&amp;nbsp; eomonth(TPODeliveries[Month],0) &amp;lt;&amp;gt; eomonth(today(),-2)&amp;nbsp; ) )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In case you want use month name use format on top of eomonth(today(),-2)&lt;/P&gt;
&lt;P&gt;format(eomonth(today(),-2), "mmm-yyyy")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2022 12:10:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-of-all-month-except-one-month/m-p/2636255#M77286</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-07-13T12:10:07Z</dc:date>
    </item>
  </channel>
</rss>

