Forum Discussion
bbreitenbach
10 years agoFrequent Visitor
HR Churn visual in HR Sample
I am new to Power BI and would like to create the HR Churn visual that is part of the mobile HR Sample. My table has the employee ID, hire date, and termination date if terminated. What columns/m...
- 10 years ago
Try to use a calculated table following below steps.
- The dataset is as below
- Create a calculated table
newTable = UNION(ADDCOLUMNS(ALL(Emp[ID],Emp[hire date]),"Status","HIRE"),ADDCOLUMNS(FILTER(ALL(Emp[ID],Emp[termination date]),ISBLANK(Emp[termination date])=FALSE()),"Status","Terminate"))
- Done
I don't have idea on "HR Churn visual" which seems a 3rd party visual. You can tweak the steps in the visual accordingly.
- The dataset is as below
Eric_Zhang
Microsoft Employee
10 years ago
Try to use a calculated table following below steps.
- The dataset is as below
- Create a calculated table
newTable = UNION(ADDCOLUMNS(ALL(Emp[ID],Emp[hire date]),"Status","HIRE"),ADDCOLUMNS(FILTER(ALL(Emp[ID],Emp[termination date]),ISBLANK(Emp[termination date])=FALSE()),"Status","Terminate"))
- Done
I don't have idea on "HR Churn visual" which seems a 3rd party visual. You can tweak the steps in the visual accordingly.