The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
16 | |
8 | |
6 | |
6 | |
5 |
User | Count |
---|---|
23 | |
13 | |
13 | |
8 | |
8 |