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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jbetkowska
Frequent Visitor

Count opened cases by day with "for" loop

Hello,

 

I have following issue and I don't know how to start writting Dax measure (if it is possible in DAX).

Lets say we have following data table:

IDopened_atclosed_at
1opened_dateclosed_date
2opened_dateopened_date

 

I would like to achieve a chart with dates on X axis - let's say last 30 days that will show count of ID's  that opened_date <= day(i) and closed date > day(i) - meaning I would like to have a chart that shows number of events that were not closed on specific day. I cannot create aggregates in DataBase because it is not mine and I have only RO access. 

Any ideas how to start?

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Try

Open cases =
VAR MaxDate =
    MAX ( 'Date'[Date] )
VAR Result =
    CALCULATE (
        COUNTROWS ( 'Table' ),
        REMOVEFILTERS ( 'Date' ),
        'Table'[Start date] <= MaxDate
            && (
                ISBLANK ( 'Table'[End Date] )
                    || 'Table'[End date] > MaxDate
            )
    )
RETURN
    Result

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

Try

Open cases =
VAR MaxDate =
    MAX ( 'Date'[Date] )
VAR Result =
    CALCULATE (
        COUNTROWS ( 'Table' ),
        REMOVEFILTERS ( 'Date' ),
        'Table'[Start date] <= MaxDate
            && (
                ISBLANK ( 'Table'[End Date] )
                    || 'Table'[End date] > MaxDate
            )
    )
RETURN
    Result

Thank you for the hint. Seems like I have solutions thanks to you!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors