Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
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.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
86 | |
81 | |
70 | |
49 |
User | Count |
---|---|
143 | |
124 | |
107 | |
60 | |
55 |