In our company , the mesure “Issue Resolved” is calculated based on specific status which is different from what is by default in easybi.
So we create a new measure :
Count(
Filter([Issue].[Issue].Members,
[Measures].[Issue status] = “VALIDATION (DONE)”
OR
[Measures].[Issue status] = “PREPROD (WIP)”
OR
[Measures].[Issue status] = “PREPROD (DONE)”
OR
[Measures].[Issue status] = “DEPLOYEMENT (WIP)”
OR
[Measures].[Issue status] = “DEPLOYEMENT (DONE)”
OR
[Measures].[Issue status] = “CLOSED”
)
)
So i had a problem when create this graph :
i replaced Resolved issue by the new measure but i got two separated gauge ? how can i correct this?