Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
hello, how would i bring back the max date in a table then show the fiscal year from that date from the date table.
The relationship is set.
The max date in the table is 01/04/2024. i would like to display it as 2024-25
Solved! Go to Solution.
Hi @NewbieJono,
Here is my solution:
On my data set my max calendar date is 31/12/2028.
VAR _MaxDate = CALCULATE( MAX (d_Calendar[Date]), ALL(d_Calendar))
VAR _Result =
YEAR(_MaxDate) & "-" & RIGHT( YEAR(_MaxDate) + 1, 2)
RETURN
_Result
Proud to be a Super User!
Hi @NewbieJono,
Here is my solution:
On my data set my max calendar date is 31/12/2028.
VAR _MaxDate = CALCULATE( MAX (d_Calendar[Date]), ALL(d_Calendar))
VAR _Result =
YEAR(_MaxDate) & "-" & RIGHT( YEAR(_MaxDate) + 1, 2)
RETURN
_Result
Proud to be a Super User!
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 41 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 62 | |
| 31 | |
| 26 | |
| 25 |