The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Data model is following:
1. Table JIRA_ISSUE - contains all JIRA items;
2. Table JIRA_SPRINT_CALENDAR - contains Sprint data (Start and Release dates)
3. Between these 2 tables, there is created Relationship (Many to One) JIRA_ISSUE[Sprint VersionID] <-> JIRA_SPRINT_CALENDAR[VersionID]
I need to get count of JIRA issues per Sprint Month. For example, if during the Feb-2019 there was 2 Sprints, I need to COUNT all items per month. Currently, problem is, that used measure is counting Jira issues per month & sprint (I suspect that it is due to existing RELATIONSHIP).
Please help with this measure:
EVALUATE CALCULATE ( COUNTROWS ( JIRA_ISSUE ), ALL ( JIRA_ISSUE ), JIRA_ISSUE[Issue Type] = "Story", JIRA_ISSUE[Status] <> "Story: Not Required", NOT ISBLANK ( JIRA_ISSUE[Sprint VersionID] ), FILTER ( ALL ( JIRA_SPRINT_CALENDAR ), YEAR ( JIRA_SPRINT_CALENDAR[Release Date] ) = YEAR ( MAX ( JIRA_SPRINT_CALENDAR[Release Date] ) ) && MONTH ( JIRA_SPRINT_CALENDAR[Release Date] ) = MONTH ( MAX ( JIRA_SPRINT_CALENDAR[Release Date] ) ) ) )
Solved! Go to Solution.
Hi @Anonymous ,
Please try this measure:
EVALUATE
CALCULATE (
COUNTROWS ( JIRA_ISSUE ),
ALL ( JIRA_ISSUE ),
JIRA_ISSUE[Issue Type] = "Story",
JIRA_ISSUE[Status] <> "Story: Not Required",
NOT ISBLANK ( JIRA_ISSUE[Sprint VersionID] ),
ALLEXCEPT (
JIRA_SPRINT_CALENDAR,
YEAR ( JIRA_SPRINT_CALENDAR[Release Date] ),
MONTH ( JIRA_SPRINT_CALENDAR[Release Date] )
)
)
For more advice, please post sample data of JIRA_ISSUE and JIRA_SPRINT_CALENDAR, and show us your expected result. How to Get Your Question Answered Quickly
Best regards,
Yuliana Gu
Issue was resolved by changing Data Model.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
109 | |
79 | |
72 | |
48 | |
39 |
User | Count |
---|---|
138 | |
108 | |
69 | |
64 | |
56 |