<?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: How many Months Left till End of FY in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-many-Months-Left-till-End-of-FY/m-p/3601219#M139150</link>
    <description>&lt;P&gt;Thank you for sharing this type of question&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 25 Dec 2023 15:36:05 GMT</pubDate>
    <dc:creator>marcoperson_250</dc:creator>
    <dc:date>2023-12-25T15:36:05Z</dc:date>
    <item>
      <title>How many Months Left till End of FY</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-many-Months-Left-till-End-of-FY/m-p/3600272#M139108</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to calculate how many months left till end of FY.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;eg: current month is december , fiscal year staring from April so i need the value 3 because fy end on March 24.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please help me on the dax calculation to get the value&lt;/P&gt;</description>
      <pubDate>Sun, 24 Dec 2023 11:30:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-many-Months-Left-till-End-of-FY/m-p/3600272#M139108</guid>
      <dc:creator>sunil222</dc:creator>
      <dc:date>2023-12-24T11:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: How many Months Left till End of FY</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-many-Months-Left-till-End-of-FY/m-p/3600300#M139110</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="665241" data-lia-user-login="sunil222" class="lia-mention lia-mention-user"&gt;sunil222&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Create the following meaure:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Month Count = 
VAR __Mon =   MONTH(MAX( 'Dates'[Date] ) )
RETURN
    IF( __Mon &amp;gt; 3 , 15 - __Mon , 3 - __Mon)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Dec 2023 12:43:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-many-Months-Left-till-End-of-FY/m-p/3600300#M139110</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2023-12-24T12:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: How many Months Left till End of FY</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-many-Months-Left-till-End-of-FY/m-p/3600888#M139141</link>
      <description>&lt;P&gt;I need the answer as 3 , now december value is 3 ,&amp;nbsp; i can use this value in another dax calculation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;as per your logic iam getting&lt;/P&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;</description>
      <pubDate>Mon, 25 Dec 2023 08:34:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-many-Months-Left-till-End-of-FY/m-p/3600888#M139141</guid>
      <dc:creator>sunil222</dc:creator>
      <dc:date>2023-12-25T08:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: How many Months Left till End of FY</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-many-Months-Left-till-End-of-FY/m-p/3601022#M139145</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="665241" data-lia-user-login="sunil222" class="lia-mention lia-mention-user"&gt;sunil222&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;You need to create a measure with the code thatI shared with you&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Dec 2023 09:58:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-many-Months-Left-till-End-of-FY/m-p/3601022#M139145</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2023-12-25T09:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: How many Months Left till End of FY</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-many-Months-Left-till-End-of-FY/m-p/3601219#M139150</link>
      <description>&lt;P&gt;Thank you for sharing this type of question&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Dec 2023 15:36:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-many-Months-Left-till-End-of-FY/m-p/3601219#M139150</guid>
      <dc:creator>marcoperson_250</dc:creator>
      <dc:date>2023-12-25T15:36:05Z</dc:date>
    </item>
  </channel>
</rss>

