Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
126 | |
78 | |
78 | |
59 | |
51 |
User | Count |
---|---|
164 | |
84 | |
68 | |
68 | |
58 |