<?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: Measure or column for fiscal year that runs from July-Sept as 1st Qtr and so on. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-or-column-for-fiscal-year-that-runs-from-July-Sept-as/m-p/3214061#M117304</link>
    <description>&lt;P&gt;Can not create columns like provided as all our data is from AzDo and we only have a table with dates for each item we have in Work Items, so are only date table is this data set. I can create a new table with CalandarAuto however as we are pulling data from AzDo this CalanderAuto new table is not avaliable in transform data. Our column for our item dates is named Tean Date 01 which could possibly used to calculate fiscal quarters statrting in July as a new measure or column however not sure how to do this.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 01 May 2023 17:00:39 GMT</pubDate>
    <dc:creator>BratKat</dc:creator>
    <dc:date>2023-05-01T17:00:39Z</dc:date>
    <item>
      <title>Measure or column for fiscal year that runs from July-Sept as 1st Qtr and so on.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-or-column-for-fiscal-year-that-runs-from-July-Sept-as/m-p/3203722#M116603</link>
      <description>&lt;P&gt;Saw a lot of posts on line about creating columns for fiscal year, just need a measure to add to a slicer to show&amp;nbsp;&lt;/P&gt;&lt;P&gt;fiscal year starting July-Sep as first quarter and so on....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 20:36:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-or-column-for-fiscal-year-that-runs-from-July-Sept-as/m-p/3203722#M116603</guid>
      <dc:creator>BratKat</dc:creator>
      <dc:date>2023-04-24T20:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: Measure or column for fiscal year that runs from July-Sept as 1st Qtr and so on.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-or-column-for-fiscal-year-that-runs-from-July-Sept-as/m-p/3206091#M116767</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="543296" data-lia-user-login="BratKat" class="lia-mention lia-mention-user"&gt;BratKat&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To create a static fiscal year in Power BI Desktop, you can follow these steps&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;1.Create a new calculated column in your date table with the following formula:&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Fiscal Year = IF(MONTH([Date])&amp;gt;=7,YEAR([Date]),YEAR([Date])-1) + 1&lt;/LI-CODE&gt;
&lt;P&gt;2.Use the new calculated column in your visuals to display data by fiscal year.&lt;/P&gt;
&lt;P&gt;3.You can also create a slicer to filter data by fiscal year.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;To create dynamic fiscal year based on the selection of the slicer in Power BI Desktop, you can follow these steps:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;1.Create a table with Starting Month by entering data.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;2.Use the Starting Month field to create a slicer.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3.Create a measure to return dynamic fiscal years.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Fiscal Year = var _mon=SELECTEDVALUE('Table (2)'[Starting Month])
var _curr=MAX('Table'[Date])
return  IF(MONTH(_curr)&amp;gt;=_mon,YEAR(_curr),YEAR(_curr)-1) + 1
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&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;/P&gt;
&lt;P&gt;Stephen Tao&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;to help the other members find it more quickly. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2023 02:14:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-or-column-for-fiscal-year-that-runs-from-July-Sept-as/m-p/3206091#M116767</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-26T02:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Measure or column for fiscal year that runs from July-Sept as 1st Qtr and so on.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-or-column-for-fiscal-year-that-runs-from-July-Sept-as/m-p/3214061#M117304</link>
      <description>&lt;P&gt;Can not create columns like provided as all our data is from AzDo and we only have a table with dates for each item we have in Work Items, so are only date table is this data set. I can create a new table with CalandarAuto however as we are pulling data from AzDo this CalanderAuto new table is not avaliable in transform data. Our column for our item dates is named Tean Date 01 which could possibly used to calculate fiscal quarters statrting in July as a new measure or column however not sure how to do this.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2023 17:00:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-or-column-for-fiscal-year-that-runs-from-July-Sept-as/m-p/3214061#M117304</guid>
      <dc:creator>BratKat</dc:creator>
      <dc:date>2023-05-01T17:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: Measure or column for fiscal year that runs from July-Sept as 1st Qtr and so on.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-or-column-for-fiscal-year-that-runs-from-July-Sept-as/m-p/3214462#M117336</link>
      <description>&lt;P&gt;Not sure if this would be helpfull for the fiscal quarters but created a duplicate of our Team Date 01 and then extracted the month numbers.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Not sure if can create a new column or measure using these columns to have fiscal quaters starting in July (MS fiscal quarters) Thank you&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2023 22:06:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-or-column-for-fiscal-year-that-runs-from-July-Sept-as/m-p/3214462#M117336</guid>
      <dc:creator>BratKat</dc:creator>
      <dc:date>2023-05-01T22:06:40Z</dc:date>
    </item>
  </channel>
</rss>

