Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hello everyone,
I am trying to create our fiscal calendar with the following logic/conditions and label in the slicer:
*Sep, Oct, Nov and Dec 2023 will be labeled as "2023 Q4", while Jan-Dec of the following year should show the normal quarter as Q1, Q2, Q3, Q4.
I have created a fiscal year calendar below:
Solved! Go to Solution.
Hi, @lorenz0210
You can try the following methods.
Column = IF(YEAR([Date])=YEAR(TODAY())&&MONTH([Date])>=9,YEAR([Date])&" "&"Q4",YEAR([Date])&" "&[Q])
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @lorenz0210
You can try the following methods.
Column:
Q = "Q"&QUARTER([Date])Label = IF(YEAR([Date])=YEAR(TODAY()),YEAR([Date])&" "&[Q],IF(YEAR([Date])=YEAR(TODAY())+1,[Q]))
Is this the result you expect? Please see the attached document.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi @v-zhangti ,
Appreciate the help. Is there a way we can adjust the Sept-Dec of 2023 to Q4 and then Normal Quarters for the 2024 year? Also, is it possible we can sort the month number as September being the 1st on the calendar since it is the start of our fiscal year.
Apologies as I am new and still learning.
Similar to this:
Hi again @v-zhangti ,
I've tried again creating a new column measure that will show FYQuarter using:
Any help will be greatly appreciated!
Thank you in advance.
Here is the expected result:
Hi, @lorenz0210
You can try the following methods.
Column = IF(YEAR([Date])=YEAR(TODAY())&&MONTH([Date])>=9,YEAR([Date])&" "&"Q4",YEAR([Date])&" "&[Q])
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 1 |