Forum Discussion

smitpau's avatar
smitpau
Helper I
5 years ago
Solved

Get Current Fiscal Year based on TODAY

Hi,   Is there a way to return the current fiscal year based on today's date (so TODAY in DAX).   I've got a calendar table as below with the dates and corresponding Fiscal Year column but not su...
  • PhilipTreacy's avatar
    5 years ago

    HI smitpau 

    Try a measure like this

    Current FY = LOOKUPVALUE('Table'[Fiscal Year],'Table'[Date],TODAY())

    Regards

    Phil