The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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.
User | Count |
---|---|
15 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
24 | |
21 | |
12 | |
10 | |
7 |