Forum Discussion
Diana_Jardim100
3 years agoFrequent Visitor
Need some help.
Hi everyone. Please I need some help. Currently I have a dataset which contains the Headcount of the company by month. I need to display the total of people that joined and left the company mo...
- Anonymous3 years ago
Ok please try
Summary = SUMMARIZE(TotalActivosSaidas,TotalActivosSaidas[ID_EMPREGAD], "First Start Date", CALCULATE(FIRSTDATE(TotalActivosSaidas[DAT_INI_ACT_EMP]),TotalActivosSaidas[DAT_INI_ACT_EMP] = MAX(TotalActivosSaidas[DAT_INI_ACT_EMP]), "Last day", CALCULATE(LASTDATE(TotalActivosSaidas[DAT_SAID]),TotalActivosSaidas[DAT_SAID] =max(TotalActivosSaidas[DAT_SAID]))))
Anonymous
3 years agoNot applicable
Do you mind sharing some sample data to help you?
Diana_Jardim100
3 years agoFrequent Visitor
- Anonymous3 years agoNot applicable
is this the result you desire?
Summary = SUMMARIZE(ALL(Diana),Diana[ID_EMPLOYEE],"Start Date",CALCULATE(MIN(Diana[INITIAL_DATE])),"End Date",CALCULATE(MAX(Diana[END_DATE])))ā