Hi @Luiz_Junior
Glad to hear that you found the formula that works for you, just a suggestion - you don’t need to use the Aggregate() function.
It is enough with this tuple, also you can improve the formula to avoid dividing by zero with CASE WHEN.
This would be the final formula:
CASE WHEN
[Measures].[Issues created]>0
THEN
1 -(([Measures].[Issues created],[RST - Resolution Time Breached].[Breached])
/
[Measures].[Issues created])
END
best,
Gerda // support@eazyBI.com