<?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: Help please asap! in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-please-asap/m-p/2856547#M91830</link>
    <description>&lt;P&gt;I've tried that also, however yields the same result. What if a filter is used only for the fiscal year?&lt;/P&gt;</description>
    <pubDate>Sat, 22 Oct 2022 04:10:46 GMT</pubDate>
    <dc:creator>lennyt99</dc:creator>
    <dc:date>2022-10-22T04:10:46Z</dc:date>
    <item>
      <title>Help please asap!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-please-asap/m-p/2856306#M91822</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;My fiscal Year data is wrong for FY 20 &amp;amp; FY 21... why is this happening but it's correct for FY 22,23,&amp;amp; 24??&lt;/P&gt;&lt;P&gt;This is my Volume LY Formula&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Volume LY = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Opportunity Tracker 2.0'[Annual Volume LBS]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;DATEADD&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Fiscal Year Conversion'[Calendar Date]&lt;/SPAN&gt;&lt;SPAN&gt;, -&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;YEAR&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 have a fiscal year calendar already marked as my date table and its correct, because the fiscal year values shown are correct, I just need it to return the correct volume in fiscal year please help with a solution . Maybe a filter or something?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2022 20:30:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-please-asap/m-p/2856306#M91822</guid>
      <dc:creator>lennyt99</dc:creator>
      <dc:date>2022-10-21T20:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Help please asap!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-please-asap/m-p/2856545#M91829</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="458664" data-lia-user-login="lennyt99" class="lia-mention lia-mention-user"&gt;lennyt99&lt;/a&gt; , seem like related to leap year, Try like &lt;/P&gt;
&lt;P&gt;Volume LY =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;SUM('Opportunity Tracker 2.0'[Annual Volume LBS]),&lt;BR /&gt;SAMEPERIODLASTYEAR('Fiscal Year Conversion'[Calendar Date]))&lt;/P&gt;</description>
      <pubDate>Sat, 22 Oct 2022 04:07:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-please-asap/m-p/2856545#M91829</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-10-22T04:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: Help please asap!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-please-asap/m-p/2856547#M91830</link>
      <description>&lt;P&gt;I've tried that also, however yields the same result. What if a filter is used only for the fiscal year?&lt;/P&gt;</description>
      <pubDate>Sat, 22 Oct 2022 04:10:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-please-asap/m-p/2856547#M91830</guid>
      <dc:creator>lennyt99</dc:creator>
      <dc:date>2022-10-22T04:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Help please asap!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-please-asap/m-p/2856548#M91831</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="458664" data-lia-user-login="lennyt99" class="lia-mention lia-mention-user"&gt;lennyt99&lt;/a&gt; ,Only for year level &lt;/P&gt;
&lt;P&gt;Rank on FY start Date or Fy year number (sortable)&lt;/P&gt;
&lt;P&gt;Year Rank = RANKX(all('Date'),'Date'[FY Year Start date],,ASC,Dense)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Measure&lt;BR /&gt;This Year = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Year Rank]=max('Date'[Year Rank])))&lt;BR /&gt;Last Year = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Year Rank]=max('Date'[Year Rank])-1))&lt;/P&gt;</description>
      <pubDate>Sat, 22 Oct 2022 04:14:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-please-asap/m-p/2856548#M91831</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-10-22T04:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: Help please asap!</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-please-asap/m-p/2856572#M91833</link>
      <description>&lt;P&gt;Unfortunatly still the same for the period of FY2020. My&amp;nbsp; fiscal calendar start and end date vary.. for exaple one year it starts 9/30, and another it starts 10/2... so perhaps -1 year that's why it's off? How do I do it by fiscal year?&lt;/P&gt;</description>
      <pubDate>Sat, 22 Oct 2022 05:17:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-please-asap/m-p/2856572#M91833</guid>
      <dc:creator>lennyt99</dc:creator>
      <dc:date>2022-10-22T05:17:06Z</dc:date>
    </item>
  </channel>
</rss>

