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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
TomLU123
Helper III
Helper III

[Seek Help] Use Date Table to filter 2 dates in one table

Dear Expert, 

 

I have a table like below which lists down all the employees' Hire Date and Termination Date. Active Employee's termination date will be blank. Once they got terminated, the termination date will have value. Below is just an example:

Employee IDHire DateJobTermination Date
1235/1/2019HR 
2325/1/2019HR 
4569/5/2017Finance5/1/2019
5345/1/2019Admin 
3541/14/2018IT5/1/2019
3451/1/2019IT 

 

What I want to measure is ①Number of New Hire ② Number of Terminated Headcount.

 

I have another table which lists down all the dates of the year:

Date
5/1/2019
6/1/2019
6/2/2019
6/3/2019

 

I want to use this Date table has the single filter to calculate those 2 measures at the same time so that I can put into single visual. The idea is like below:

New Hire Headcount = If "Hire Date" = "Date" selected, distinctcount of Employee ID. 

Terminated Headcount = If "Termination Date"="Date" slected, distinctcount of Employee ID.

 

Which means, if the user choose 5/1/2019 in the filter. The measure for new hire will be 3 and terminated headcount will be 2.

 

Is it possible to achieve that?

 

Many thanks!

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@TomLU123 set relationship between hire date and termination date with your calendar table. One of this relationship will be active and other one will be inactive.

 

In this case I'm assuing Hire Date relationship is Active and Terminate Date relationship is InActive.

 

Add following measure and you will get the count of hire and terminate head count as per date.

 

Hire Headcount = 
DISTINCTCOUNT( Table[EmployeeId] )

Terminate Headcount = 
CALCULATE( [Hire Headcount], 
USERELATIONSHIP( Table[Termination Date], Calendar[Date] )
)


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

2 REPLIES 2
parry2k
Super User
Super User

@TomLU123 set relationship between hire date and termination date with your calendar table. One of this relationship will be active and other one will be inactive.

 

In this case I'm assuing Hire Date relationship is Active and Terminate Date relationship is InActive.

 

Add following measure and you will get the count of hire and terminate head count as per date.

 

Hire Headcount = 
DISTINCTCOUNT( Table[EmployeeId] )

Terminate Headcount = 
CALCULATE( [Hire Headcount], 
USERELATIONSHIP( Table[Termination Date], Calendar[Date] )
)


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Cmcmahan
Resident Rockstar
Resident Rockstar

Sure. Two measures is probably the easiest way to get this info.

 

TotalHired = CALCULATE( DISTINCTCOUNT(Table1[Employee ID]), Table1[Hire Date] = SELECTEDVALUE(DateTable[Date]) )
TotalTerminated = CALCULATE( DISTINCTCOUNT(Table1[Employee ID]), Table1[Termination Date] = SELECTEDVALUE(DateTable[Date]) )

Stick those into your visual that has dates from your DateTable, and you're good to go

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors