I want to create a calculated measure that will return ‘1’ if the Issue Created Date is not empty else It will return ‘0’. I tried following logic with no luck. It return string ‘mmm dd yyyy’
CASE
IsEmpty(
[Measures].[Issue created date])
WHEN CBool(1) THEN ‘1’
WHEN CBool(0) THEN ‘0’
END