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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a Dates Table with FiscalYear column set from 2020 to 2060
The measure CurrentFiscalYear =
Solved! Go to Solution.
Thank you for helping....yes we do Fiscal Year
I used:
try this :
FiscalYearTest =
VAR currentfiscalyear = year(today())
RETURN
Filter (
distinct (Dates[FiscalYear] ) ,
Dates[FiscalYear] < = currentfiscalyear
)
let me know if it works for you
Thanks, this does not return the Year after the Current Fiscal Year. I am looking for the table to return 2020-2025. Basically Current Fiscal Year +1 year
try this :
FiscalYearTest =
CurrentFiscalYear = IF(MONTH(TODAY()) >= 7, YEAR(TODAY()) + 2, YEAR(TODAY()) +1 )
RETURN
Filter (
distinct (Dates[FiscalYear] ) ,
Dates[FiscalYear] < = currentfiscalyear
)
so if i understand correctly,
if im in month >=7, then my current fiscalyear should be 2025, and thus i need to get data from 2020 till 2026
however,
if the month <=7 then my currentfiscal year is 2024 and thus i need to get the data from 2020 till 2025.
am i right ?
Thank you for helping....yes we do Fiscal Year
I used: