<?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: total by month showing wrong value. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-by-month-showing-wrong-value/m-p/2817188#M89368</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="398723" data-lia-user-login="ROG" class="lia-mention lia-mention-user"&gt;ROG&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;
&lt;P&gt;Closing Base 2 = SUMX ( VALUES ( 'Table'[Month Name Long] ), [Closing Base] )&lt;/P&gt;</description>
    <pubDate>Tue, 04 Oct 2022 14:17:30 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2022-10-04T14:17:30Z</dc:date>
    <item>
      <title>total by month showing wrong value.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-by-month-showing-wrong-value/m-p/2817158#M89365</link>
      <description>&lt;P&gt;Hey guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the table below with the closing base showing the correct value by day, but the total by month is wrong.&lt;/P&gt;&lt;P&gt;It's giving me the average, and for the business logic it should be giving me the last day amount which is 1,172,294.&lt;BR /&gt;So for each month the value should be the amount for the last day of the month.&amp;nbsp;&lt;BR /&gt;What do I need to do to see the expected value?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;Many thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 14:09:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-by-month-showing-wrong-value/m-p/2817158#M89365</guid>
      <dc:creator>ROG</dc:creator>
      <dc:date>2022-10-04T14:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: total by month showing wrong value.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-by-month-showing-wrong-value/m-p/2817188#M89368</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="398723" data-lia-user-login="ROG" class="lia-mention lia-mention-user"&gt;ROG&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;
&lt;P&gt;Closing Base 2 = SUMX ( VALUES ( 'Table'[Month Name Long] ), [Closing Base] )&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 14:17:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-by-month-showing-wrong-value/m-p/2817188#M89368</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-10-04T14:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: total by month showing wrong value.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-by-month-showing-wrong-value/m-p/2817402#M89378</link>
      <description>&lt;P&gt;Thansk&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp; Unfortunately, it's giving me the exact amount I have.&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I need is a dax measure that shows the amount of last date of the month, and not the total for that month.&lt;BR /&gt;The result will say how much the business closed the month.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 15:27:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-by-month-showing-wrong-value/m-p/2817402#M89378</guid>
      <dc:creator>ROG</dc:creator>
      <dc:date>2022-10-04T15:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: total by month showing wrong value.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-by-month-showing-wrong-value/m-p/2817452#M89382</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="398723" data-lia-user-login="ROG" class="lia-mention lia-mention-user"&gt;ROG&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Closing Base 2 =
CALCULATE (
    [Closing Base],
    'Table'[Month Name Long] = MAX ( 'Table'[Month Name Long] )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 04 Oct 2022 15:50:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-by-month-showing-wrong-value/m-p/2817452#M89382</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-10-04T15:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: total by month showing wrong value.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-by-month-showing-wrong-value/m-p/2817474#M89384</link>
      <description>&lt;P&gt;I used the dax below and it works.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Monthly Closing Month - 30D = &lt;/SPAN&gt;&lt;FONT color="#0000FF"&gt;&lt;SPAN&gt;CLOSINGBALANCEMONTH&lt;/SPAN&gt;&lt;/FONT&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Daily Closing Base - 30D]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'&lt;span class="lia-unicode-emoji" title=":magnifying_glass_tilted_right:"&gt;🔎&lt;/span&gt;Calendar'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 04 Oct 2022 15:59:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/total-by-month-showing-wrong-value/m-p/2817474#M89384</guid>
      <dc:creator>ROG</dc:creator>
      <dc:date>2022-10-04T15:59:33Z</dc:date>
    </item>
  </channel>
</rss>

