Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I have a ticketing system that gives me a
-Work Order number
-A open date
-a closed date
I'm trying to create a line graph that will show on a week by week basis how many open tickets on a particular date. I'm struggling with the DAX logic that will show on date XXXX that a ticket is open based on the open and closed dates. Can anyone help me out?
Solved! Go to Solution.
This should do the trick.
Measure =
COUNTROWS (
CALCULATETABLE ( 'TicketTable', 'TicketTable'[ClosedDate] <> BLANK () )
)
Obviously replace the table and column names with the actual object names that exist in your PBI model.
This should do the trick.
Measure =
COUNTROWS (
CALCULATETABLE ( 'TicketTable', 'TicketTable'[ClosedDate] <> BLANK () )
)
Obviously replace the table and column names with the actual object names that exist in your PBI model.
Thanks! That works! So simple...ugh!
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
8 | |
7 |