The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello
My date table (tblCalendar) is calculated between the min and max dates in another table. The Max date is 28/October/2022 (today). I created 2 measures , a YTD count and a ThisTimeLastYear count, but the ThisTimeLastYear is giving incorrect results, so I used the following DAX to return the dates …
EVALUATE
VAR StartDate = DATE ( 2022, 01, 01 )
VAR EndDate = DATE ( 2022, 10, 28 )
RETURN
CALCULATETABLE (
DATEADD ( tblCalendar[Date], -1, YEAR ),
tblCalendar[Date] >= StartDate &&
tblCalendar[Date] <= EndDate
)
ORDER BY [Date] DESC
If I use and EndDate of October 28 2022, it returns 3 additional dates October 29, 30 and 31, even though these dates are not in any table? All other dates I’ve tested return the expected range. January 2022 has the same structure as October 2022, i.e. Jan 1 /Oct 1 are Saturday and Jan 31 /Oct 31 are Monday, and the January results are as expected.
I’ve been looking at this for a couple of hours and I can’t figure any reason for the 3 extra dates?
Any ideas
Thanks in advance.
Solved! Go to Solution.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
21 | |
19 | |
19 | |
18 | |
14 |
User | Count |
---|---|
41 | |
39 | |
24 | |
22 | |
19 |