Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello,
I am trying to provide some insights on employee movements within a company HR dataset. I have the following fields:
1. GLOBAL_ID - Employee ID as a whole number
2. JOB_TITLE - Position of employee as text
3. CURRENT_RECORD - A binary text column with either 'N' or 'Y' to indicate whether a row is an employee's current record. An employee can have multiple rows based on employment history with different job titles, and the row with "Y" is the employee's up to date employment details. All "old" rows will have a "N" in this column.
4. VALIDITY_START_DATE - a date column based on when that employee's record was updated with a new record. This is in a relationship with a date dimension table - DIM_DATE[Date]
I would like to visualise job title changes in the company in a chord diagram. To do this, I need a "From" field and a "To" field and it needs to be filterable by the aforementioned DIM_DATE[Date] slicer.
I am thinking of approaching this problem by creating a Previous Position table with the employees' most recent job title and "N" in Current Record field, and a Current Position table with employees' job title and "Y" in Current Record field and using CROSSJOIN to join the tables by the GLOBAL_ID column but am running into many errors. Can someone assist me in building out some DAX to do this?
Solved! Go to Solution.
The DAX code you provided was useful to break down into steps but no data was being pulled into my table once I executed it (even checking all column names, etc.).
I came up with the following to resolve the issue:
Hi @ErMley ,
I created some data:
Here are the steps you can follow:
1. Create calculated table.
TrueTbale =
VAR _table =
FILTER ( 'Table', [CURRENT_RECORD] = "Y" )
VAR _table2 =
ADDCOLUMNS (
_table,
"ToTest",
MINX (
FILTER (
_table,
[GLOBAL_ID ] = EARLIER ( [GLOBAL_ID ] )
&& [VALIDITY_START_DATE] > EARLIER ( [VALIDITY_START_DATE] )
),
[VALIDITY_START_DATE]
)
)
VAR _table3 =
ADDCOLUMNS (
_table2,
"To",
MINX (
FILTER (
_table2,
[GLOBAL_ID ] = EARLIER ( [GLOBAL_ID ] )
&& [VALIDITY_START_DATE] = EARLIER ( [ToTest] )
),
[JOB_TITLE]
)
)
VAR _table4 =
SELECTCOLUMNS (
FILTER ( _table3, [To] <> BLANK () ),
"GLOBAL_ID", [GLOBAL_ID ],
"From", [JOB_TITLE],
"To", [To]
)
RETURN
_table4
2. Result:
If the above results do not meet your expectations, can you express the expected results in the form of a picture, we can help you better.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
The DAX code you provided was useful to break down into steps but no data was being pulled into my table once I executed it (even checking all column names, etc.).
I came up with the following to resolve the issue:
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
9 | |
8 | |
8 |
User | Count |
---|---|
14 | |
12 | |
11 | |
11 | |
8 |