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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi all,
I am trying to find a way I can create a report of tickets created after their joiner date.
I have a master sheet with the following columns needed to create a solution,
Key (which is the ticket number), Created Date, Joiner Date.
This master list includes all tickets like service requests, indicents, and Joiner Forms. Not all tickets have joiner dates, only the tickets that are joiner forms.
Hi @Anonymous ,
Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or if you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.
Refer to:
How to provide sample data in the Power BI Forum
How to Get Your Question Answered Quickly
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Please try:
First, create a measure:
Flag = IF(MAX('Table'[Joiner Start Date])<MAX('Table'[Created])&&MAX('Table'[Issue Type])="Joiner",1,0)
Then apply it to the visual:
Use the visual level filter:
Final output:
If this is not what you want, please provide me with more details about your table and your problem or share me with your pbix file after removing sensitive data.
Refer to:
How to provide sample data in the Power BI Forum
How to Get Your Question Answered Quickly
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Key | Summary | Created | Issue Type | Joiner Start Date | Reporter | ||||
SR1-6934 | Joiner BOB | 7/25/2022 | Joiner | 8/2/2022 | Lisa Helms |
So, a count of all tickets created after "Joiner Start Date" by "Reporter"? Is that the requirement?
Also, please provide more than one row of sample data.
I do not have a Customer Num, I get an error because of this segmentation
ALL(Tickets), VALUES(tickets[CustomerNum])
(I used Ticket Number) but since it is not a numberical data type, it gives an error.
I'm making some assumptions here on what your data actually looks like - mainly assuming that tickets are entered for various customers or users or some other entity.
If your data looks something like the data above, this measure should get you what you want:
# Tickets Created After Joiner Date =
VAR tbl =
ADDCOLUMNS(
SUMMARIZE(
Tickets,
Tickets[CustomerNum],
Tickets[TicketNumber],
Tickets[CreatedDate],
Tickets[Type],
"Joiner_Date", CALCULATE(
MINX(
Tickets,
Tickets[JoinerDate]
),
ALL(Tickets),
VALUES(tickets[CustomerNum])
)
),
"AfterJoinerFlag", IF(
[CreatedDate] >= [Joiner_Date] && [Type] <> "Joiner",
1,
0
)
)
RETURN
SUMX(
tbl,
[AfterJoinerFlag]
)
Sample data from your master sheet would be helpful.
User | Count |
---|---|
14 | |
10 | |
7 | |
6 | |
5 |
User | Count |
---|---|
30 | |
19 | |
12 | |
7 | |
5 |