Forum Discussion
birdie29
Advocate II
9 years agoMax date from a table with one critera
Hello I would like a measure or a column that shows the the max date in my date table (called 'Time') but where another critera is fulfilled ie in the example below, where the financial period st...
BetterCallFrank
Resolver IV
9 years agoFor the overall latest reporting date try
Max Latest Reporting Date =
CALCULATE(
MAX('TIME'[Date]);
ALL('TIME');
'TIME'[FinancialPeriodStatus]=0
)HTH,
Frank