DAX Function Guide
MAX
Sam McKay
CEO & Founder
How does the MAX work?
MAX Formula Syntax
MAX(
<column>
)
MAX(
<column>
)
How do you use the MAX?
Largest value in the column or in both expressions.
Related Blog Posts
Loading
Considerations when using the MAX?
When comparing two expressions, blank is treated as 0 when comparing. That is, Max(1, Blank() ) returns 1, and Max( -1, Blank() ) returns 0. If both arguments are blank, MAX returns a blank. If either expression returns a value that is not allowed, MAX returns an error.
No support for the TRUE / FALSE values. Use the MAXA function if you want to evaluate a column of TRUE / FALSE values.
Related Video Tutorials
Loading
Formula examples using the MAX
=MAX (
InternetSales[ExtendedAmount]
)
= MAX (
[TotalSales], [TotalPurchases]
)
Related Courses
Loading