The following formula counts the number of changes in the due date:
CASE WHEN IsEmpty([Measures].[Issue due date old values])
THEN
0
ELSE
Len ([Measures].[Issue due date old values])-
Len(Replace([Measures].[Issue due date old values],",",""))+1
END
Hi Janis,
thank you! When added the measure it counted a total number of 8 (same line like my example above). But it should be 9 in total (8 “history” + 1 due date right now). Because of that, there is the “+1” at the end of the formular. To be honest I don’t know why +1 ist “not enough”.
So I replaced “+1” with “+2”. No I have the right amount.
Anyway, case closed!
Kind regards,
Josh