Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Ignoring Relationships using CALCULATE

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] ) )
    )
)
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Issue was resolved by changing Data Model.

View solution in original post

2 REPLIES 2
v-yulgu-msft
Microsoft Employee
Microsoft Employee

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

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Issue was resolved by changing Data Model.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.