Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Anonymous
Not applicable

Tickets created after the join date.

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. 

8 REPLIES 8
v-jianboli-msft
Community Support
Community Support

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.

v-jianboli-msft
Community Support
Community Support

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:

vjianbolimsft_0-1659348513368.png

 

Use the visual level filter:

vjianbolimsft_1-1659348513370.png

 

Final output:

vjianbolimsft_2-1659348513371.png

 

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.

Anonymous
Not applicable

KeySummaryCreatedIssue TypeJoiner Start DateReporter    
SR1-6934Joiner BOB 7/25/2022Joiner8/2/2022Lisa Helms    
AUaero
Responsive Resident
Responsive Resident

So, a count of all tickets created after "Joiner Start Date" by "Reporter"?  Is that the requirement?

AUaero
Responsive Resident
Responsive Resident

Also, please provide more than one row of sample data.

Anonymous
Not applicable

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. 

AUaero
Responsive Resident
Responsive Resident

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.  

AUaero_0-1658940141084.png

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]
)
AUaero
Responsive Resident
Responsive Resident

Sample data from your master sheet would be helpful.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.