Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi,
Is it possible to create a calculated measure that count number of the created objects if a value of another measure >0
Thanks
Rami
Hello Rami,
You would like to use object-level calculations when you would need to count objects based on two different measures. Here is an example formula:
Sum(
Filter(
Descendants([Object].CurrentMember, [Object].[Object]),
DateInPeriod(
[Measures].[Object created date],
[Time].CurrentHierarchyMember
)
),
-- count objects created if value in another measure is > 0
CASE WHEN [Measures].[another measure] > 0 -- set your measure name here
THEN [Measures].[Objects created]
END
)
Set the formatting for this measure to integer explicitly. eazyBI might not detect the data type of the results by default.
The formula is quite general. You might want to update it by adding additional filters or exceptions according to you your particular use case.
Daina / support@eazybi.com
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Rami Khader
Yes it's possible. I'm assuming you are using insight.
Put the objects in the rows and then create a defined measure. Not clear what you are looking for, so here are some instructions: https://docs.eazybi.com/eazybi/data-import/data-from-jira-apps/insight-asset-management#InsightAssetManagement-ImportInsightcustomfieldattributesforJiraissues
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register Now
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.