<?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: MTD sum does not give total till date in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356783#M60060</link>
    <description>&lt;P&gt;I appreciate taking the time&lt;BR /&gt;&lt;BR /&gt;as you notice in the following formula, I am using the DatesTable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MTD Target&amp;nbsp;= TOTALMTD([Actual Target] ,DatesTable[Date])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if this is what you mentioned in your reply.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;also the below not working, its giving blank:&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;TargetMTD = &lt;/SPAN&gt;&lt;SPAN&gt;TOTALMTD&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SalesmanTarget[TargetAmount]&lt;/SPAN&gt;&lt;SPAN&gt;) ,&lt;/SPAN&gt;&lt;SPAN&gt;DatesTable[Date]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 23 Feb 2022 16:53:44 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-02-23T16:53:44Z</dc:date>
    <item>
      <title>MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2355116#M59933</link>
      <description>&lt;P&gt;I have sales and target colums in sales report.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i wanted to make target month to date.&lt;/P&gt;&lt;P&gt;for sales i used the simple formula:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;MTD Sales= TOTALMTD([NetTotal] ,SalesmanTarget[TargetDay])&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;EM&gt;&amp;nbsp;NetTotal is the sum of sales &amp;amp; TargetDay is the date column&lt;/EM&gt;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;the result is correct&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I made another formula&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;MTD Target= TOTALMTD([Actual Target],SalesmanTarget[TargetDay])&amp;nbsp;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;where&lt;/EM&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Actual Target= &lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SalesmanTarget[TargetAmount]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;and the results are as follows MTD sales and Actual Target are correct, but the MTD target is not. &lt;STRONG&gt;MTD Target should be the target assigned to the sales team from start of the current month till date&lt;/STRONG&gt;. but as you see i am not reaching the correct sum for MTD Target.&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;is there a mistake in my formulas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate your help and support&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 07:38:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2355116#M59933</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-23T07:38:49Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2355162#M59935</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I would try uisng a calendar table for date column reference. Since DAX is filter context dependand I suspect now your measure is calculating day level sales instead of MTD values.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!&lt;BR /&gt;&lt;BR /&gt;My LinkedIn: &lt;A href="https://www.linkedin.com/in/n%C3%A4ttiahov-00001/" target="_blank"&gt;https://www.linkedin.com/in/n%C3%A4ttiahov-00001/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 07:37:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2355162#M59935</guid>
      <dc:creator>ValtteriN</dc:creator>
      <dc:date>2022-02-23T07:37:09Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2355186#M59937</link>
      <description>&lt;P&gt;Thank you for your reply.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the date table ready. so now i tried with the date table but the results did not change.&amp;nbsp;&lt;/P&gt;&lt;P&gt;as you can see below, the MTD Target and Actual Target are still equal. The formulas are as follows:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;MTD Sales = TOTALMTD([NetTotal] ,DatesTable[Date])&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;MTD Target&amp;nbsp;= TOTALMTD([Actual Target] ,DatesTable[Date])&lt;/STRONG&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 07:46:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2355186#M59937</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-23T07:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2355933#M60000</link>
      <description>&lt;P&gt;UPDATE I also tried the following formula,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;STRONG&gt;MTD Target&lt;/STRONG&gt; &lt;STRONG&gt;= &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;CALCULATE(SUM([Actual Target]), DATESMTD(SalesmanTarget[TargetDay]))&lt;BR /&gt;&lt;SPAN&gt;MTD Target= &lt;/SPAN&gt;CALCULATE(SUM([Actual Target]), DATESMTD(DatesTable[Date]))&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;Issue is not resolved yet&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 23 Feb 2022 12:44:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2355933#M60000</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-23T12:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2355991#M60006</link>
      <description>&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;UPDATE&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;I tried the builtin measure and the same issue still not resolved.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;BR /&gt;TargetAmount MTD = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;ISFILTERED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SalesmanTarget[TargetDay]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;TOTALMTD&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'SalesmanTarget'[TargetAmount]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;SalesmanTarget[TargetDay]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;BR /&gt;the result is blank,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 23 Feb 2022 13:13:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2355991#M60006</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-23T13:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356058#M60012</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;How do you calculate [NetTotal]? This might be the root problem.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 13:33:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356058#M60012</guid>
      <dc:creator>ValtteriN</dc:creator>
      <dc:date>2022-02-23T13:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356121#M60015</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;BR /&gt;Can you please share a acreenshot of your data model showing the realtionships and connected culumns? Also can you confirm what are slicing by? And from which table?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 13:50:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356121#M60015</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-02-23T13:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356315#M60030</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;&lt;STRONG&gt;Additional step i took today.&lt;/STRONG&gt;&lt;/FONT&gt; I removed PowerBI and installed the latest version, restarted my machine. I thought maybe some calculations stuck in memory. &lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt; &lt;EM&gt;Just for sake of me doing whatever it takes.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 14:49:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356315#M60030</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-23T14:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356373#M60031</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;you should be using dates only from date table. Slice by month from the date table only. Time intelligent functions works only with a standard date tables that is marked as date table.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 15:01:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356373#M60031</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-02-23T15:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356783#M60060</link>
      <description>&lt;P&gt;I appreciate taking the time&lt;BR /&gt;&lt;BR /&gt;as you notice in the following formula, I am using the DatesTable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MTD Target&amp;nbsp;= TOTALMTD([Actual Target] ,DatesTable[Date])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if this is what you mentioned in your reply.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;also the below not working, its giving blank:&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;TargetMTD = &lt;/SPAN&gt;&lt;SPAN&gt;TOTALMTD&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SalesmanTarget[TargetAmount]&lt;/SPAN&gt;&lt;SPAN&gt;) ,&lt;/SPAN&gt;&lt;SPAN&gt;DatesTable[Date]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 23 Feb 2022 16:53:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356783#M60060</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-23T16:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356817#M60064</link>
      <description>&lt;P&gt;Yes I saw that already but in your report you are slicing by a column that not visible in the screenshot. Is that the month nsme column from the date table?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 17:13:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356817#M60064</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-02-23T17:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356879#M60066</link>
      <description>&lt;P&gt;I am using [NetTotal] in calculating sales only. nettotal is sum of sales coming from TransactionEntry table. theres no complicated calculation in NetTotal.&lt;/P&gt;&lt;P&gt;Target is a bigger issue though. i am trying to sum the target, but i dont need the whole moth target, i need only the Sum of target till date or MTD.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 17:48:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356879#M60066</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-23T17:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356938#M60071</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;in your report you are slicing by a column that is not visible in the screenshot. Is that the "month name" column from the date table? If not what is it?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 18:27:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2356938#M60071</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-02-23T18:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2357175#M60083</link>
      <description>&lt;P&gt;In this table the slicing is by area.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 21:21:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2357175#M60083</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-23T21:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2357487#M60099</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Either you select a date on a slicer. &amp;nbsp;or in the table you slice by date/date hierarchy and keep the area on the slicer (or on the columns). When say "month to date" the DAX engine needs to understand which date. Once you tell the engine which date then you'll start to see differences between you different measures.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 02:41:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2357487#M60099</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-02-24T02:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2358114#M60138</link>
      <description>&lt;P&gt;&lt;FONT color="#800000"&gt;&lt;STRONG&gt;UPDATE&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I try to creat MTD by Quick Measure, it gives me the following error:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;EM&gt;Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy or primary date column&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Does that mean anything in context of the issue?&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 24 Feb 2022 08:39:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2358114#M60138</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-24T08:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2358131#M60139</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please refer to my reply below. You should be slicing by date hierarchy not area. MTD has no meaning if you slice by area!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 08:43:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2358131#M60139</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-02-24T08:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2358268#M60151</link>
      <description>&lt;P&gt;&lt;FONT color="#800000"&gt;&lt;STRONG&gt;UPDATE&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I try to creat MTD by Quick Measure, it gives me the following error:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;EM&gt;Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy or primary date column&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Does that mean anything in context of the issue?&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 24 Feb 2022 09:18:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2358268#M60151</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-24T09:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: MTD sum does not give total till date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2366291#M60575</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Not sure what your context is like, but you can try my formula:&lt;/P&gt;
&lt;LI-CODE lang="ruby"&gt;MTD = 
CALCULATE(SUM(Table2[Sale]),FILTER(ALL(Table2),EOMONTH('Table2'[Date],0)=EOMONTH(MAX('Table2'[Date]),0)&amp;amp;&amp;amp;'Table2'[Date]&amp;lt;=MAX('Table2'[Date])))&lt;/LI-CODE&gt;
&lt;P&gt;I use this formula a lot and it always works for me, and this doesn't need to rely on a date table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Zeon Zheng&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2022 05:37:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MTD-sum-does-not-give-total-till-date/m-p/2366291#M60575</guid>
      <dc:creator>v-angzheng-msft</dc:creator>
      <dc:date>2022-03-01T05:37:20Z</dc:date>
    </item>
  </channel>
</rss>

