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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
joonah
New Member

Headcount by month

Hello,

 

I am trying to solve how to make a measure that counts how many people are employed on a given year and month.

 

The parameter is that if a person is working on the last day of the month he/she should be inculded in the headcount - otherwise not.

 

I have a table that has true/false (1 or 0) colum for each date rows where 1 marks that the the person is employed on the day.

 

I am a beginner with DAX, so I would really appreciate any insight how to get going. Thank you very much!

 

br,

Joona

1 ACCEPTED SOLUTION

@joonah

 

You can use PREVIOUSMONTH and PREVIOUSYEAR function in such scenario. I'd like to give a simple sample as below. You can adjust the formula according to your dataset.

 

Please refer to the attachment for the sample table. I also create a Calendar table in PBI, and make relationship for them.

Then you can use following two measures to get the desired result. For details, please refer to attached PBIX file.

 

Headcount by month = 
CALCULATE (
    DISTINCTCOUNT ( Table1[PersonKey] ),
    PREVIOUSMONTH ( 'Calendar'[Date] ),
    Table1[HCCount] = 1
)
Headcount by year = 
CALCULATE (
    DISTINCTCOUNT ( Table1[PersonKey] ),
    PREVIOUSYEAR ( 'Calendar'[Date] ),
    Table1[HCCount] = 1
)

Headcount by month_1.jpg

 

Best Regards,
Herbert

View solution in original post

3 REPLIES 3
Omega
Impactful Individual
Impactful Individual

Can you please share a screenshot of the table you are using? 

 

Hi,

 

HCCount column displays whether the person is employed on a given day. Date key is the only datefield in this table, but I have calendaer table also. I was thinkin of adding date column to this table also...

 

example.jpg

 

Thank you very much for your time,

Joona

@joonah

 

You can use PREVIOUSMONTH and PREVIOUSYEAR function in such scenario. I'd like to give a simple sample as below. You can adjust the formula according to your dataset.

 

Please refer to the attachment for the sample table. I also create a Calendar table in PBI, and make relationship for them.

Then you can use following two measures to get the desired result. For details, please refer to attached PBIX file.

 

Headcount by month = 
CALCULATE (
    DISTINCTCOUNT ( Table1[PersonKey] ),
    PREVIOUSMONTH ( 'Calendar'[Date] ),
    Table1[HCCount] = 1
)
Headcount by year = 
CALCULATE (
    DISTINCTCOUNT ( Table1[PersonKey] ),
    PREVIOUSYEAR ( 'Calendar'[Date] ),
    Table1[HCCount] = 1
)

Headcount by month_1.jpg

 

Best Regards,
Herbert

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.