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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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.