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 have my measure:
DIVIDE
(
SUM(Fact[Hours]) - CALCULATE (SUM( Fact[Hours2]) , ALL(Fact) , Fact[Type]="D" ),
SUM(Fact[Hours])
)
It works fine.
But now I want to use it in another measure to do:
SUM(Fact[Hours]) * MAX(MyMeasure)
And it doesn’t work… Why can't I do MAX(MyMeasure)?
Solved! Go to Solution.
Hi @Anonymous,
Please refer to MAX Intro article: https://learn.microsoft.com/en-us/dax/max-function-dax
MAX() only references a column. If you want to use MAX(), a quick workaround might be to transform your measure to a calcualated column.
Best Regards,
Joyce
Hi @Anonymous,
Please refer to MAX Intro article: https://learn.microsoft.com/en-us/dax/max-function-dax
MAX() only references a column. If you want to use MAX(), a quick workaround might be to transform your measure to a calcualated column.
Best Regards,
Joyce