DAX Headcount Formula

mrmmickle1

Well-known Member
Joined
May 11, 2012
Messages
2,461
I'm new to DAX and just trying to get some basic calculations running. I've looked at a number of references online (DAX Patterns, PowerPivotPro, etc...) but am unsure what I'm doing incorrectly.

My data has EOQ Datestamps in a single field: 'Headcount Files'[Q_End_Date]

So for example if we had 100 Employees at our company at the end of last quarter I would have 100 records with the date 06/30/2017 in the 'Headcount Files'[Q_End_Date].

The max date in this field is 6/30/2017

In the file I'm working with we have 9 Quarters of Data. I would like to calculate the headcount at different time periods....i.e. Headcount Current Quarter, Headcount Previous Quarter, Headcount End of Previous Year, Headcount End of 2015 (2 Years ago).

I thought that if I got one scenario working I could figure it out. Trying to get the Headcount at the end of Previous Year Right now:


I defined several dynamic date measures (Not sure if this is good practice or not since I'm totally new to this space):

Headcount
Code:
[Headcount]=DISTINCTCOUNT('Headcount Files'[EE_ID])

End of Quarter
Code:
[EOQ] =ENDOFQUARTER('Headcount Files'[Q_End_Date])

End of Previous Year
Code:
[EOPY]=Date(YEAR(Today())-1,12,31)

End of Previous Quarter
Code:
[EOPQ]=Calculate([EOQ],DateAdd('Headcount Files'[Q_End_Date],-1,QUARTER))

This seems to work for the Current Quarter Headcount:

Code:
CALCULATE(
    [Headcount],
    FILTER(
        ALL('Headcount Files'[Q_End_Date]),
        'Headcount Files'[Q_End_Date]=MAX('Headcount Files'[Q_End_Date])
    )
)

but when I try to use this for Previous Year End Headcount it doesn't work:
(THIS IS THE FORMULA THAT IS NOT WORKING)
Code:
CALCULATE(
    [Headcount],
    FILTER(
        ALL('Headcount Files'[Q_End_Date]),
        'Headcount Files'[Q_End_Date]=[EOPY])
    )
)

Can someone please help me resolve my issue and explain the error in my logic? Thanks for taking the time to review my inquiry.
 
Last edited:

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
After some trial and error this works:

Code:
PY Headcount:=CALCULATE(
    [Headcount],
    FILTER(
        ALL('Headcount Files'[Q_End_Date]),
        'Headcount Files'[Q_End_Date]=DATEVALUE([EOPY]))
    )
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,893
Members
449,097
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top