Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I begin my fiscal year at month 9. All my programmation is quiet ok, I just have problem with "FiscalQuarter" , it begins at 0! and "FY&YQuarter" doesn't follow well .
I hope this message finds you well. I've noticed that this solution remain unresolved. If any of you have managed to find a resolution to the issue, I kindly request that you share your solution for the benefit of the entire community. Alternatively, if you're still facing challenges, please do let us know as well.
Your insights and updates will greatly assist others who might be encountering the same challenge.
I would change the calculation of the Fiscal Quarter ... your logic currently would only work if your first Fiscal period is the first month of a Calendar Quarter.
An easier way is to calculate the quarter number using the Month (or in your case the Fiscal Month) rather than the offset from the Calendar Quarter.
//Fiscal
"Fiscal Month" , VALUE(IF(MONTH([Date]) >= 9, MONTH([Date]) - 8, MONTH([Date]) + 4)),
"Fiscal Quarter" , VALUE(ROUNDUP((IF(MONTH([Date]) >= 9, MONTH([Date]) - 8, MONTH([Date]) + 4)) / 3 , 0)),
Hope this helps,
Bob
Thank you very much Bob, seems to work! But how to format number fiscal month to name ? Fiscal Month number 9, I would like that appears "Sept (9)", "Oct (10)", etc...
And "FY&YQuarter" I still not found a solution 🤔. It seems easy, but finally for me I struggle
User | Count |
---|---|
25 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
25 | |
12 | |
11 | |
10 | |
6 |