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
In DAX Studio:
When I run: EVALUATE row("A",EOMONTH (min(Sales[OrderDate]),3))
I correctly get:
A |
10/31/2001 12:00:00 AM |
When I run: EVALUATE row("B",ENDOFMONTH (Sales[OrderDate])+1)
I incorrectly get:
B |
8/1/2004 12:00:00 AM |
I expected 8/1/2001
However, When I run:
EVALUATE
FILTER( ALL ( Calendar ),
'Calendar'[Date] >= ENDOFMONTH (Sales[OrderDate])+1
&&
'Calendar'[Date] <= EOMONTH (min(Sales[OrderDate]),3)
)
I unfortunately get:
Date |
8/16/2001 12:00:00 AM |
9/11/2001 12:00:00 AM |
10/24/2001 12:00:00 AM |
Can you explain? I expect a resultant date range from B to A.
Solved! Go to Solution.
Solved. Dropped the endofmonth and converted to eomonth for both filters.
Solved. Dropped the endofmonth and converted to eomonth for both filters.
Hi @cnestg8r,
Congratulations, you have resolved your issue by yourself. Please mark the workaround as answer, so more people will benefit from it.
Best Regards,
Angelia
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 |
---|---|
92 | |
86 | |
85 | |
66 | |
49 |
User | Count |
---|---|
140 | |
113 | |
104 | |
64 | |
60 |