Hello everyone,
I want to retrieve a "HEADCOUNT" value on the first day of the current month, using DAX.
How should I approach this? I feel like the answer's right in front of me, but have not had luck so far.
Thanks.
Solved! Go to Solution.
Hi,
I am not sure how your datamodel looks like, but please try something like below whether it suits your requirement.
Headcount measure: =
CALCULATE (
MAX ( 'TableName'[HEADCOUNT] ),
'TableName'[capturedate]
= EOMONTH ( TODAY (), -1 ) + 1
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Something like this?
Hi,
I am not sure how your datamodel looks like, but please try something like below whether it suits your requirement.
Headcount measure: =
CALCULATE (
MAX ( 'TableName'[HEADCOUNT] ),
'TableName'[capturedate]
= EOMONTH ( TODAY (), -1 ) + 1
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Thank you, it worked!
Is there also a way to extract the same value from the first day, but of the previous month (instead of the current)?
Hi,
Thank you for your feedback.
Please try writing a measure like below.
The link down below, that describes about EOMONTH DAX function, might help.
Headcount measure Prev.month: =
CALCULATE (
MAX ( 'TableName'[HEADCOUNT] ),
'TableName'[capturedate]
= EOMONTH ( TODAY (), -2 ) + 1
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
User | Count |
---|---|
145 | |
65 | |
62 | |
59 | |
49 |
User | Count |
---|---|
140 | |
65 | |
62 | |
62 | |
56 |