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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have done a lot of research and I am not successful in creating a Fiscal Quarter field in my DimDate table. What am I missing? The current Fiscal date range is 7/1 - 6/30
FiscalMonthNumber = IF(('dimDate'[Month Number]-6)<=0,'dimDate'[Month Number]+6,'dimDate'[Month Number]-6)FiscalYear = IF('dimDate'[Month Number]>6,'dimDate'[Year]+1,'dimDate'[Year])FiscalQtr = ROUNDUP ([FiscalMonthNumber]/3,0)
Solved! Go to Solution.
Hi,
Try this calculated column formula in the DimDate Table
Fiscal Year = IF(MONTH('dimDate'[Date])>6,YEAR('dimDate'[Date])+1,YEAR('dimDate'[Date]))
Fiscal Quarter = IF(MONTH('dimDate'[Date])>9,2,IF(MONTH('dimDate'[Date])>6,1,IF(MONTH('dimDate'[Date])>3,4,3)))
Hope this helps.
Hi,
Try this calculated column formula in the DimDate Table
Fiscal Year = IF(MONTH('dimDate'[Date])>6,YEAR('dimDate'[Date])+1,YEAR('dimDate'[Date]))
Fiscal Quarter = IF(MONTH('dimDate'[Date])>9,2,IF(MONTH('dimDate'[Date])>6,1,IF(MONTH('dimDate'[Date])>3,4,3)))
Hope this helps.
I am not sure I got it completely. But please try.
Easy way to give qrt
Qtr Jul-jun = if(MONTH('Compare Date'[Compare Date]) in {7,8,9},1,if(MONTH('Compare Date'[Compare Date]) in {10,11,12},2,if(MONTH('Compare Date'[Compare Date]) in {1,2,3},3,4)))Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 49 | |
| 33 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 85 | |
| 70 | |
| 38 | |
| 28 | |
| 25 |