Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
First of all thanks already for trying to help me.
As you can see we have a table with these fields :
PERNR
BEGDA
ENDDA
And a column I created myself (Z2Date)
This Z2Date is showing the date when someone joined the company.
The BEGDA & ENDDA date are showing the validity of the record.
So in this case the validity of this record is starting 27/10/2020 (BEGDA) until 31/12/9999 (ENDDA) where the person joined the company on 27/10/2020 (Z2Date)
Now I want to be able to create a graph giving the "New Joiners" in time.
So on X axis I want the a date (YEAR / MONTH / ..) and on Y axis the count of the new joiners.
I also have a Date table where BEGDA/ENDDA & Z2Date are linked to Date in my Date table.
I guess now I need to create a measure "New Joiners" but I can't figure out how.
The measure I have until now (which is wrong) is this :
Solved! Go to Solution.
If you have an active relationship between DateTable[Date] and PA0041[Z2Date], this should do it:
New joiners =
DISTINCTCOUNT( PA0041[PERNR] )
were it's assumed that PERNR is the unique id identifying an employee
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
If you have an active relationship between DateTable[Date] and PA0041[Z2Date], this should do it:
New joiners =
DISTINCTCOUNT( PA0041[PERNR] )
were it's assumed that PERNR is the unique id identifying an employee
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.