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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have DimDate with monthly granularity for 3 year from 2015 to 2017. I want to create measure which will return Max date from date dimesion. I tried using below logic but None is working. Please help.
MAX(DimDate[Date].[Date])
MAXX(DimDate,DimDate[Date].[Date])
Thanks
Deepak
Solved! Go to Solution.
Then try this:
Measure = CALCULATE( MAX( 'TableName' [Date]), ALL( 'TableName'))
You could try using this instead:
MAX(DimDate[Date])
i already tried this one. When i drop the measure on table, It gives last date of each month. I need last date of dimension table, irrespective of current cotext or filter. It should alwasy give last date of Date dimension.
Then try this:
Measure = CALCULATE( MAX( 'TableName' [Date]), ALL( 'TableName'))
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!