Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi All,
I want to create Financial Quarter based on existing date column
EX: My organization financial Quarter begins from September 1st so how to calculate the quarter based on existing date column ( i have column start date which has date column)
sepQ1
Oct
Nov
DecQ2
Jan
Feb
MarQ3
Apr
May
JunQ4
Jul
Aug
Solved! Go to Solution.
Hi @Manjula,
I'd like to suggest date function on your data field with an offset number to get the modified date values, then you can use the quarter function to extract the custom fiscal quarter:
FiscalQuarter =
QUARTER (
DATE ( YEAR ( 'Table'[Date] ), MONTH ( 'Table'[Date] ) - 8, DAY ( 'Table'[Date] ) )
)
Regards,
Xiaoxin Sheng
Hi @Manjula,
I'd like to suggest date function on your data field with an offset number to get the modified date values, then you can use the quarter function to extract the custom fiscal quarter:
FiscalQuarter =
QUARTER (
DATE ( YEAR ( 'Table'[Date] ), MONTH ( 'Table'[Date] ) - 8, DAY ( 'Table'[Date] ) )
)
Regards,
Xiaoxin Sheng
its not working
@Manjula ,
You can create new qtr like
Qtr = if(Quarter([Date]), 4, 1, Quarter([Date]) +1)
Qtr name = "Q" & if(Quarter([Date]), 4, 1, Quarter([Date]) +1)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 57 | |
| 43 | |
| 41 | |
| 22 | |
| 17 |
| User | Count |
|---|---|
| 183 | |
| 114 | |
| 93 | |
| 62 | |
| 45 |