Forum Discussion
Mmahachi
Advocate I
6 years agomax table filter not working
In my calendar table I have 2 columns other than my key date field one is to say 'yes' or 'no' depending on if the period has been closed by accounting and the second to show a user friendly display ...
Anonymous
6 years agoNot applicable
Hi Mmahachi ,
Try this measure.
Last Period Closed =
VAR LastClosed =
CALCULATE (
MAX ( 'Calendar'[Fiscal Period Display] ),
FILTER (
'Calendar',
'Calendar'[AccountPeriodClosed]
) = "Yes"
)
RETURN
LastClosed
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
- AntrikshSharma6 years ago
Community Champion
Anonymous you might want to keep the "yes" inside parenthesis 😄