Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
75 | |
63 | |
51 | |
48 |
User | Count |
---|---|
204 | |
86 | |
64 | |
59 | |
56 |