Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
How to show fiscal periods instead of calendar ones in powerbi
Solved! Go to Solution.
Hi @AtchayaP ,
According to your description, I create a sample.
1.Create a date table, which has the max and min time of your calendar.
2.Create a new table like this.
Table =
ADDCOLUMNS (
CALENDARAUTO ( 1 ),
"CalMonth", FORMAT ( [Date], "mmm" ),
"CalQtr", "Q"
& CEILING ( MONTH ( [Date] ), 3) / 3,
"CalYear", YEAR ( [Date] ),
"CalWeekNo", WEEKNUM ( [Date], 2 ),
"Fiscal Qtr", "Q"
& CEILING ( MONTH ( EDATE ( [Date], - 1) ), 3 ) / 3,
"Fiscal Year",
VAR CY =
RIGHT ( YEAR ( [Date] ), 2 )
VAR NY =
RIGHT ( YEAR ( [Date] ) + 1, 2 )
VAR PY =
RIGHT ( YEAR ( [Date] ) - 1, 2 )
VAR FinYear =
IF ( MONTH ( [Date] ) > 1, CY & "-" & NY, PY & "-" & CY )
RETURN
FinYear,
"Fiscal Month", MONTH ( EDATE ( [Date], - 1) ),
"Weekend/Working", IF ( WEEKDAY ( [Date], 2 ) > 5, "Weekend", "Working" ),
"Day", FORMAT ( [Date], "ddd" )
)
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @AtchayaP ,
According to your description, I create a sample.
1.Create a date table, which has the max and min time of your calendar.
2.Create a new table like this.
Table =
ADDCOLUMNS (
CALENDARAUTO ( 1 ),
"CalMonth", FORMAT ( [Date], "mmm" ),
"CalQtr", "Q"
& CEILING ( MONTH ( [Date] ), 3) / 3,
"CalYear", YEAR ( [Date] ),
"CalWeekNo", WEEKNUM ( [Date], 2 ),
"Fiscal Qtr", "Q"
& CEILING ( MONTH ( EDATE ( [Date], - 1) ), 3 ) / 3,
"Fiscal Year",
VAR CY =
RIGHT ( YEAR ( [Date] ), 2 )
VAR NY =
RIGHT ( YEAR ( [Date] ) + 1, 2 )
VAR PY =
RIGHT ( YEAR ( [Date] ) - 1, 2 )
VAR FinYear =
IF ( MONTH ( [Date] ) > 1, CY & "-" & NY, PY & "-" & CY )
RETURN
FinYear,
"Fiscal Month", MONTH ( EDATE ( [Date], - 1) ),
"Weekend/Working", IF ( WEEKDAY ( [Date], 2 ) > 5, "Weekend", "Working" ),
"Day", FORMAT ( [Date], "ddd" )
)
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @AtchayaP ,
You can refer the below article:-
https://www.mssqltips.com/sqlservertip/7133/compute-fiscal-week-calculations-with-power-bi-and-dax/
It would be helpful to answer if you could share some sample data with expected output.
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.