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
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!
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 |
|---|---|
| 61 | |
| 54 | |
| 39 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 98 | |
| 84 | |
| 35 | |
| 30 | |
| 25 |