<?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: YTD with allexcept in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD-with-allexcept/m-p/2058875#M46421</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;For DATESYTD, you need to provide your date column from your dates table.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;X =
CALCULATE (
    SUM ( 'Budget'[Budget] ) / 3,
    ALLEXCEPT ( 'Budget', 'Budget'[Department] ),
    DATESYTD ( 'Date'[date] )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 06 Sep 2021 07:08:10 GMT</pubDate>
    <dc:creator>Fowmy</dc:creator>
    <dc:date>2021-09-06T07:08:10Z</dc:date>
    <item>
      <title>YTD with allexcept</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD-with-allexcept/m-p/2058815#M46420</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;so I have a measure here that gives me the correct monthly value where i do need to use allexcept because otherwise it wont filter the departments&amp;nbsp; but I need to do a YTD of it. When I tried to use ytd of it, it wont show correctly. How do I get YTD with alllexcept?&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;x=CALCULATE (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUM ( 'Budget'[Budget] )/3 ,ALLEXCEPT('Budget',''Budget'[Department]),datesytd('calendar','Date'[date]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 06 Sep 2021 06:55:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD-with-allexcept/m-p/2058815#M46420</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-06T06:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: YTD with allexcept</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD-with-allexcept/m-p/2058875#M46421</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;For DATESYTD, you need to provide your date column from your dates table.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;X =
CALCULATE (
    SUM ( 'Budget'[Budget] ) / 3,
    ALLEXCEPT ( 'Budget', 'Budget'[Department] ),
    DATESYTD ( 'Date'[date] )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Sep 2021 07:08:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD-with-allexcept/m-p/2058875#M46421</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2021-09-06T07:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: YTD with allexcept</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD-with-allexcept/m-p/2058888#M46422</link>
      <description>&lt;P&gt;thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="52518" data-lia-user-login="Fowmy" class="lia-mention lia-mention-user"&gt;Fowmy&lt;/a&gt;&amp;nbsp; but it still wont work because the issue is that i have all the values in the month december but i need to divide that to get the number i need but if i do the ytd function wont show anything?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Sep 2021 07:11:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD-with-allexcept/m-p/2058888#M46422</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-06T07:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: YTD with allexcept</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD-with-allexcept/m-p/2058937#M46423</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;It's hard to guess what type of data model and the report you have. You can share a sample Power BI file and explain the expected result if the following measure doesn't work for you.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;X =
CALCULATE (
    CALCULATE (
        SUM ( 'Budget'[Budget] ) / 3,
        VALUES ( 'Dates'[Year] ),
        REMOVEFILTERS ( Dates )
    ),
    ALLEXCEPT ( 'Budget', 'Budget'[Department] ),
    DATESYTD ( 'Dates'[date] )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Sep 2021 07:27:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD-with-allexcept/m-p/2058937#M46423</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2021-09-06T07:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: YTD with allexcept</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD-with-allexcept/m-p/2061068#M46509</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="52518" data-lia-user-login="Fowmy" class="lia-mention lia-mention-user"&gt;Fowmy&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I just uploaded a file here&amp;nbsp;&lt;A href="https://github.com/userdata21/test" target="_blank"&gt;https://github.com/userdata21/test&lt;/A&gt;&lt;/P&gt;&lt;P&gt;the issue is that ytd measure is not working as i want there the cumulatief. Any ideas?&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;</description>
      <pubDate>Tue, 07 Sep 2021 07:03:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD-with-allexcept/m-p/2061068#M46509</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-07T07:03:58Z</dc:date>
    </item>
  </channel>
</rss>

