Forum Discussion
Isnaan_Ahmed
3 years agoFrequent Visitor
Help with Time Intelligence using Fiscal Years
Hi all! Hope you can help with an issue I'm having - I am trying to create a table that lists the ordered units by Fiscal Year (this part works) with another column showing ordered units in the p...
FreemanZ
3 years agoSuper User
hi Isnaan_Ahmed
try like:
_OrderedUnits Last FY =
VAR _SelectedFY = SELECTEDVALUE ( _FiscalDates[Fiscal Year (544)] )
RETURN
CALCULATE(
[01. Ordered Units],
_FiscalDates[Fiscal Year (544)] = LEFT(_SelectedFY, 2)&(RIGHT(_SelectedFY,2)-1)
)