This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 29 | |
| 27 | |
| 25 | |
| 20 | |
| 14 |
| User | Count |
|---|---|
| 53 | |
| 47 | |
| 22 | |
| 19 | |
| 18 |