Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I can’t follow the documentation ALLEXCEPT function (DAX) - DAX | Microsoft Docs
It says that “Removes all context filters in the table except filters that are applied to the specified columns…”
The below is the code for the column Week Ending Date:
If as the documentation say, I remove all context filter (which there aren’t any, since I’m in SSAS)… then it should just get the minimum Date, why is getting the minimum Date Grouped By Week????
The CALCULATE function performs a context transition. So the row context is now the filter context.
The ALLEXCEPT function then clears the filter context from all columns except Year Week. So your MIN(Date) is is getting the minimum for the Year Week.