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
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:
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.