Forum Discussion
Anonymous
5 years agoNot applicable
Maximum values based on two col
Hi all, I have a table called 'Group' with the following table structure: Group Month Value group 1 1 50 group 1 1 100 group 1 1 175 group 1 2 100 group 1 3 100...
edhans
Community Champion
5 years agoHi Anonymous
The following will work:
The measure is this:
Max Value = MAX('Table'[Value])
You could just drag the Value column into the table, then select the dropdown and use Maximum, but I recommend against that. That creates an implicit measure, and creating an explicit measure is best practice.