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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
tonny_bwg
Helper I
Helper I

calculate active employee number in each department

Hi, Gurus, need you help to solve this problem. 

 

Create 1 to many relationships on department field

tonny_bwg_0-1659948336451.png

 


DAX to calculate active employee numbers

 

在职人数 = CALCULATE([基础人数],           //countrows(employee table)

   dim_Date[Date]<=MAX(dim_Date[Date]),

   filter(VALUES('Fct_Employees'[Hire Date]),Fct_Employees[Hire Date]<=MAX(dim_Date[Date])),

                     filter(VALUES('Fct_Employees'[Leave Date]),OR('Fct_Employees'[Leave Date]>Max(dim_Date[Date]),ISBLANK('Fct_Employees'[Leave Date]))))

 

  1. want to show active employee in each department, just show the summarized number.

tonny_bwg_1-1659948336454.png

how to showed it correctly? 

 

thanks 

--Tonny

1 ACCEPTED SOLUTION

hI, jcalheir

thank you so much for the help, try it, but still wrong.  however , when i put department field of employee table into matrix, it shows correct number for each department.

please see below figures

tonny_bwg_1-1660007039566.png

 

tonny_bwg_0-1660006995050.png

 

View solution in original post

3 REPLIES 3
jcalheir
Solution Supplier
Solution Supplier

Why do you need the first filter? ( dim_Date[Date]<=MAX(dim_Date[Date]))

 

Ty as well to use just one filter function. Would you try this?

 

在职人数 =
CALCULATE (
    [基础人数],
    //countrows(employee table),
    FILTER (
        'Fct_Employees',
        Fct_Employees[Hire Date] <= MAX ( dim_Date[Date] )
            && Fct_Employees[Leave Date] > MAX ( dim_Date[Date] )
            && ISBLANK ( 'Fct_Employees'[Leave Date] )
    )
)

 

Hi, Jcalheir

 

I found the root cause of this issue, it was caused by a blank existed in front of field value. removed it, it shows correlcy.

 

thanks 

--Tonny

hI, jcalheir

thank you so much for the help, try it, but still wrong.  however , when i put department field of employee table into matrix, it shows correct number for each department.

please see below figures

tonny_bwg_1-1660007039566.png

 

tonny_bwg_0-1660006995050.png

 

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.