Hi All,
I’m trying to create a measure to filter issues where ‘Issue Progress end date’ is either blank or higher than ‘Sprint start date’
My attempt:
CASE
WHEN
([Measures].[Issue Progress end date] = 0)
OR
([Measures].[Issue Progress end date]>[Measures].[Sprint start date])
THEN
[Measures].[Issue Progress end date]
END
I think there is some value type error with the dates not being compatible by am not sure how to address it.
This is what returns in the table: “#ERR: mondrian.olap.fun.MondrianEvaluationException: Expected value of type NUMERIC; got value ‘Thu Feb 15 15:18:36 UTC 2024’ (DATETIME)”
Any help would be appreciated