Forum Discussion
smitpau
5 years agoHelper I
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...
- 5 years ago
HI smitpau
Try a measure like this
Current FY = LOOKUPVALUE('Table'[Fiscal Year],'Table'[Date],TODAY())Regards
Phil
PhilipTreacy
5 years agoSuper User
HI smitpau
Try a measure like this
Current FY = LOOKUPVALUE('Table'[Fiscal Year],'Table'[Date],TODAY())
Regards
Phil
Jacob_Austin
3 years agoRegular Visitor
doesn't work, only returns the value into rows with today's date.