GROUPMAX
Syntax
GROUPMAX(<number>)
Description
Returns the maximum values in a group. A GROUPBY() function must first be used in order to then find the maximum arguments of another column in relation to it.
This is an aggregate function.
Example
Given the following data:
| Name | Number |
|---|---|
| Ajay | 27087 |
| Ajay | 55317 |
| Alice | 14489 |
| Ajay | 31310 |
| Ajay | 57822 |
| Ajay | 63855 |
| Alice | 47640 |
| Alice | 48979 |
First create a group using GROUPBY(#RawData!Name).
| Name |
|---|
| Ajay |
| Alice |
Then use GROUPMAX(#RawData!Number) to return the maximum values of the Number column.
| Name | Max_Number |
|---|---|
| Ajay | 63855 |
| Alice | 48979 |
, multiple selections available,