Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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?
Solved! Go to Solution.
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
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
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 9 | |
| 8 | |
| 8 |