Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hello all,
I am trying to create a chart that would show changes in service tickets.
I do have a dataset that shows me the ticket numbers for each day, i.e.
What I would like my chart to show not only the sum of distinct ticket numbers per day, but also, that on 2019-10-02, there was one ticket closed and one new ticket opened...
Would there be a way to show the inflow / outflow of tickets in a chart?
I think what I would need to do is to create some sort of comparison between (current_date) and ((current_date) - 1) where I would be comparing the distinct ticket numbers and highlight the differences. I know how I could do this in Excel, but I certainly wouldn't want to get back on that train... Any help would be appreciated!
Hi @Anonymous ,
To create two measures as below.
count = CALCULATE(DISTINCTCOUNT('Table'[Ticket I
D]),ALLEXCEPT('Table','Table'[Date]))
difference =
VAR d =
MAX ( 'Table'[Date] ) - 1
VAR c =
CALCULATE (
DISTINCTCOUNT ( 'Table'[Ticket ID] ),
ALLEXCEPT ( 'Table', 'Table'[Date] )
)
VAR a =
CALCULATE (
DISTINCTCOUNT ( 'Table'[Ticket ID] ),
FILTER ( ALL ( 'Table' ), 'Table'[Date] = d )
)
RETURN
IF ( a = BLANK (), BLANK (), c - a )
Hi,
Unfortunately this does not do what I want it to do - The measure delivers some numbers, but they don't make sense when I look at the date.
What happes for me is that the "Difference" always shows a value above what I would be expecting...
To better visualize what I would like to have, I have attached some anonymized data to show what I'm looking at, so you can reference it...
What I would like to see now, is:
- In case a ticket ID was not present the day before: Add "IN" (or something similar) in the "Action" column
- In case a ticket ID was not present the day after: Add "OUT" in the "Action" column
- In other cases: Add nothing to the "Action" column
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 14 | |
| 13 | |
| 9 | |
| 7 | |
| 7 |