Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
BratKat
Microsoft Employee
Microsoft Employee

Measure or column for fiscal year that runs from July-Sept as 1st Qtr and so on.

Saw a lot of posts on line about creating columns for fiscal year, just need a measure to add to a slicer to show 

fiscal year starting July-Sep as first quarter and so on....

 

Thank you  

3 REPLIES 3
Anonymous
Not applicable

Hi @BratKat ,

 

To create a static fiscal year in Power BI Desktop, you can follow these steps:

1.Create a new calculated column in your date table with the following formula: 

Fiscal Year = IF(MONTH([Date])>=7,YEAR([Date]),YEAR([Date])-1) + 1

2.Use the new calculated column in your visuals to display data by fiscal year.

3.You can also create a slicer to filter data by fiscal year.

 

To create dynamic fiscal year based on the selection of the slicer in Power BI Desktop, you can follow these steps:

1.Create a table with Starting Month by entering data.

vstephenmsft_0-1682474925652.png

2.Use the Starting Month field to create a slicer.

vstephenmsft_1-1682475157992.png

 

3.Create a measure to return dynamic fiscal years.

Fiscal Year = var _mon=SELECTEDVALUE('Table (2)'[Starting Month])
var _curr=MAX('Table'[Date])
return  IF(MONTH(_curr)>=_mon,YEAR(_curr),YEAR(_curr)-1) + 1

vstephenmsft_2-1682475196180.pngvstephenmsft_3-1682475202581.png

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.           

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.  

BratKat
Microsoft Employee
Microsoft Employee

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. 

 

BratKat_0-1682978712621.png

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 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.