Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
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
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.