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
Pingu
Regular Visitor

Filter( dates based)

hi,

 

I have a table with tickets:

Ticket_ID  /    Day_Open   / Day_Closed / ...

and a Calendar table with dates

 

I'd like a measure to cound the amount of open tickets any given day so that I can chart it.

 

So  I tried:

OpenTickets=  COUNTROWS(FILTER(Table; Table[Day_Open].[Date]< MIN(Calendar[Date]) && (Table[Day_Closed].[Date]> MIN(Calendar[Date]) || Table[Day_Closed].[Date]= BLANK())))

 

but I doesn't work. I had to put MIN (Date)  and I suppose this is the problem, but I don't know how to filter using the given  checked day on a measure.

 

any tip?

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

Hi Pingu,

 

You said "I'd like a measure to cound the amount of open tickets any given day so that I can chart it.", if "any given day" means every day in the calendar table. You can create a relationship between Ticket table and Calendar table and modify your measure like below:

OpenTickets =
COUNTROWS (
    FILTER (
        Table;
        Table[Day_Open].[Date] < RELATED ( Calendar[Date] )
            && (
                Table[Day_Closed].[Date] > RELATED ( Calendar[Date] )
                    || Table[Day_Closed].[Date] = BLANK ()
            )
    )
)

If it means date user has selected, after creating relationship, you can create a slicer chart based on Calendar column and modify measure like this:

OpenTickets =
COUNTROWS (
    FILTER (
        Table;
        Table[Day_Open].[Date] < SELECTEDVALUE ( Calendar[Date] )
            && (
                Table[Day_Closed].[Date] > SELECTEDVALUE ( Calendar[Date] )
                    || Table[Day_Closed].[Date] = BLANK ()
            )
    )
)

Regards,

Jimmy Tao

View solution in original post

1 REPLY 1
v-yuta-msft
Community Support
Community Support

Hi Pingu,

 

You said "I'd like a measure to cound the amount of open tickets any given day so that I can chart it.", if "any given day" means every day in the calendar table. You can create a relationship between Ticket table and Calendar table and modify your measure like below:

OpenTickets =
COUNTROWS (
    FILTER (
        Table;
        Table[Day_Open].[Date] < RELATED ( Calendar[Date] )
            && (
                Table[Day_Closed].[Date] > RELATED ( Calendar[Date] )
                    || Table[Day_Closed].[Date] = BLANK ()
            )
    )
)

If it means date user has selected, after creating relationship, you can create a slicer chart based on Calendar column and modify measure like this:

OpenTickets =
COUNTROWS (
    FILTER (
        Table;
        Table[Day_Open].[Date] < SELECTEDVALUE ( Calendar[Date] )
            && (
                Table[Day_Closed].[Date] > SELECTEDVALUE ( Calendar[Date] )
                    || Table[Day_Closed].[Date] = BLANK ()
            )
    )
)

Regards,

Jimmy Tao

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
Top Kudoed Authors