<?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 in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4288730#M170211</link>
    <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The issue arises because the TOTALYTD function isn't dynamically filtering the dates based on the year-to-date (YTD) range due to the way you structured your DAX formula. Specifically, the FILTER function within SUMX evaluates the entire table, effectively ignoring the TOTALYTD filter context.&lt;/P&gt;&lt;P&gt;Here’s what is missing and how to fix it:&lt;/P&gt;&lt;H3&gt;&lt;STRONG&gt;Revised DAX for Dynamic YTD Calculation&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;You need to make sure that the filtering for YTD is applied correctly. Replace your measure with the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;YTD AC = 
CALCULATE(
    SUMX(
        'Append',
        IF('Append'[view] = "actuals", [Value], 0)
    ),
    DATESYTD('FinDate'[Date], "31/12")
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;&lt;STRONG&gt;Testing the Measure&lt;/STRONG&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;Verify that your date column ('FinDate'[Date]) contains valid and continuous date values (i.e., no gaps or missing dates).&lt;/LI&gt;&lt;LI&gt;Ensure that the column 'Append'[view] accurately classifies rows as "actuals" or other categories.&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;&lt;STRONG&gt;Optional: Debugging Helper Measure&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;To see which rows are contributing to your calculation, you can create a debugging table:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;EVALUATE
CALCULATETABLE(
    FILTER('Append', 'Append'[view] = "actuals"),
    DATESYTD('FinDate'[Date], "31/12")
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will show the filtered rows for YTD, helping you verify that the filters are applied correctly.&lt;/P&gt;&lt;P&gt;Let me know if you encounter any issues!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution, this will help others!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If my response(s) assisted you in any way, don't forget to drop me a "&lt;STRONG&gt;Kudos&lt;/STRONG&gt;" &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;BR /&gt;Poojara&lt;BR /&gt;Data Analyst | MSBI Developer | Power BI Consultant&lt;BR /&gt;&lt;STRONG&gt;YouTube&lt;/STRONG&gt;: &lt;A href="https://youtube.com/@biconcepts?si=04iw9SYI2HN80HKS" target="_blank" rel="noopener"&gt;https://youtube.com/@biconcepts?si=04iw9SYI2HN80HKS&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 18 Nov 2024 10:55:01 GMT</pubDate>
    <dc:creator>Poojara_D12</dc:creator>
    <dc:date>2024-11-18T10:55:01Z</dc:date>
    <item>
      <title>YTD</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4288691#M170209</link>
      <description>&lt;P&gt;I have put this dax together.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;YTD AC = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;TOTALYTD&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;sumx&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;('Append','Append'[view]=&lt;/SPAN&gt;&lt;SPAN&gt;"actuals"&lt;/SPAN&gt;&lt;SPAN&gt;),[Value]),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'FinDate'[Date],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'FinDate'[Date]&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;TODAY&lt;/SPAN&gt;&lt;SPAN&gt;())&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I am getting the same result as&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;sumx(FILTER('Append','Append'[view]="actuals"),[Value])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Please can you help with what is missing so that this is dynamic and doesn't need filtering every month?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Many thanks,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 18 Nov 2024 10:28:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4288691#M170209</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-18T10:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: YTD</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4288730#M170211</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The issue arises because the TOTALYTD function isn't dynamically filtering the dates based on the year-to-date (YTD) range due to the way you structured your DAX formula. Specifically, the FILTER function within SUMX evaluates the entire table, effectively ignoring the TOTALYTD filter context.&lt;/P&gt;&lt;P&gt;Here’s what is missing and how to fix it:&lt;/P&gt;&lt;H3&gt;&lt;STRONG&gt;Revised DAX for Dynamic YTD Calculation&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;You need to make sure that the filtering for YTD is applied correctly. Replace your measure with the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;YTD AC = 
CALCULATE(
    SUMX(
        'Append',
        IF('Append'[view] = "actuals", [Value], 0)
    ),
    DATESYTD('FinDate'[Date], "31/12")
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;&lt;STRONG&gt;Testing the Measure&lt;/STRONG&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;Verify that your date column ('FinDate'[Date]) contains valid and continuous date values (i.e., no gaps or missing dates).&lt;/LI&gt;&lt;LI&gt;Ensure that the column 'Append'[view] accurately classifies rows as "actuals" or other categories.&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;&lt;STRONG&gt;Optional: Debugging Helper Measure&lt;/STRONG&gt;&lt;/H3&gt;&lt;P&gt;To see which rows are contributing to your calculation, you can create a debugging table:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;EVALUATE
CALCULATETABLE(
    FILTER('Append', 'Append'[view] = "actuals"),
    DATESYTD('FinDate'[Date], "31/12")
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will show the filtered rows for YTD, helping you verify that the filters are applied correctly.&lt;/P&gt;&lt;P&gt;Let me know if you encounter any issues!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution, this will help others!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If my response(s) assisted you in any way, don't forget to drop me a "&lt;STRONG&gt;Kudos&lt;/STRONG&gt;" &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;BR /&gt;Poojara&lt;BR /&gt;Data Analyst | MSBI Developer | Power BI Consultant&lt;BR /&gt;&lt;STRONG&gt;YouTube&lt;/STRONG&gt;: &lt;A href="https://youtube.com/@biconcepts?si=04iw9SYI2HN80HKS" target="_blank" rel="noopener"&gt;https://youtube.com/@biconcepts?si=04iw9SYI2HN80HKS&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2024 10:55:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4288730#M170211</guid>
      <dc:creator>Poojara_D12</dc:creator>
      <dc:date>2024-11-18T10:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: YTD</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4288906#M170222</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Corrected DAX Measure:&lt;BR /&gt;YTD AC =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;SUM('Append'[Value]),&amp;nbsp;&lt;BR /&gt;'Append'[view] = "actuals",&amp;nbsp;&lt;BR /&gt;DATESYTD('FinDate'[Date])&lt;BR /&gt;)&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":love_letter:"&gt;💌&lt;/span&gt; If this helped, a Kudos &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; or Solution mark would be great! &lt;span class="lia-unicode-emoji" title=":party_popper:"&gt;🎉&lt;/span&gt;&lt;/STRONG&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Kedar&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/kedar-pande" target="_blank" rel="noopener"&gt;Connect on LinkedIn&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2024 12:54:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4288906#M170222</guid>
      <dc:creator>Kedar_Pande</dc:creator>
      <dc:date>2024-11-18T12:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: YTD</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4289373#M170242</link>
      <description>&lt;P&gt;Sorry I tried this, but I still get the whole year, rather than until the current month.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2024 17:21:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4289373#M170242</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-18T17:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: YTD</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4289374#M170243</link>
      <description>&lt;P&gt;Sorry I tried this, but I still get the whole year, rather than until the current month.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2024 17:21:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4289374#M170243</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-18T17:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: YTD</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4289416#M170245</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;try below measure&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;MEASURE =
CALCULATE (
    [value],
    'Append'[view] = "actuals",
    keepfilter ( 'FinDate'[Date] &amp;lt; TODAY () )
)

&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Dangar&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2024 17:48:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4289416#M170245</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-11-18T17:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: YTD</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4290006#M170261</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please update the formula of measure as below and check if it can return the expected result...&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;YTD AC = 
TOTALYTD (
    SUM ( 'Append'[Value] ),
    'Append'[Date],
    FILTER (
        ALLSELECTED ( 'Append' ),
        'Append'[view] = "actuals"
            &amp;amp;&amp;amp; 'Append'[Date] &amp;lt; TODAY ()
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2024 02:56:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4290006#M170261</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-19T02:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: YTD</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4291009#M170283</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;, use the below measure&amp;nbsp;&lt;/P&gt;&lt;P&gt;the reason why iam choosing this measure , if it is more 1 filters then you have to use datesytd function forperfamnace . please check the below one&amp;nbsp;&lt;BR /&gt;YTD =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;SUM('Append'[Value]),&lt;BR /&gt;'Append'[view] = "actuals",&lt;BR /&gt;DATESYTD('FinDate'[Date])&lt;BR /&gt;)&lt;BR /&gt;or use below one&amp;nbsp;&lt;BR /&gt;YTD AC =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;SUM('Append'[Value]),&lt;BR /&gt;'Append'[view] = "actuals",&lt;BR /&gt;DATESYTD('FinDate'[Date])&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;please accept if my measure will works&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&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, 19 Nov 2024 12:18:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4291009#M170283</guid>
      <dc:creator>Laxmanjatoth</dc:creator>
      <dc:date>2024-11-19T12:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: YTD</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4291538#M170299</link>
      <description>&lt;P&gt;Sorry, let me clarify.&lt;/P&gt;&lt;P&gt;My table has dates in the future. That's why I keep getting the values in the future. I realised that I need a measure that calculated the YTD to a point in time.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2024 16:34:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4291538#M170299</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-19T16:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: YTD</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4292569#M170342</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I created a sample pbix file(see &lt;EM&gt;&lt;STRONG&gt;the attachment&lt;/STRONG&gt;&lt;/EM&gt;), please check if that is what you want.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;YTD AC = 
CALCULATE (
    SUM ( 'Append'[Value] ),
    FILTER (
        'Append',
        'Append'[view] = "actuals"
            &amp;amp;&amp;amp; YEAR ( 'Append'[Date] ) = YEAR ( TODAY () )
            &amp;amp;&amp;amp; 'Append'[Date] &amp;lt;= TODAY ()
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2024 06:46:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4292569#M170342</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-20T06:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: YTD</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4294615#M170449</link>
      <description>&lt;DIV&gt;&lt;SPAN&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;Please try below one&lt;BR /&gt;&lt;BR /&gt;YTD AC =&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;TOTALYTD&lt;/SPAN&gt;&lt;SPAN&gt;( [Total View], 'FinDate'[Date], 'FinDate'[Date]&amp;lt;TODAY()&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; , 'Append'[view]="actuals"&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp; Thank You!&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 21 Nov 2024 06:56:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/YTD/m-p/4294615#M170449</guid>
      <dc:creator>Mahesh0016</dc:creator>
      <dc:date>2024-11-21T06:56:24Z</dc:date>
    </item>
  </channel>
</rss>

