English (Español a continuación)
This function determines the member of a series that has the highest value of a given variable:
- FIX («Sales»)
- @MAX (list of members);
- ENDFIX
In this example, this function determines the member of a list that has the highest sales. Its structure consists of a single component:
- @MAX (list of members);
This list of members can be specified in several ways:
- An individual list of members: @LIST(Barcelona, Madrid, Alicante)
- A function that determines a group: @RELATIVE(Markets, 0)
As we have seen in the previous example, this function is used within a FIX in which the variable for which the maximum is calculated is specified:
- FIX («Sales»)
- @MAX (list of members);
- ENDFIX
Let’s see an example: We have created a member “First Market” to record the market with the highest sales:

- FIX («Sales»)
- «First market» = @MAX (@RELATIVE(«Markets», 0));
- ENDFIX
The result of this function is:
- «First market» = Madrid
Any question, please send an email to: essbaseeasy@gmail.com
Español
Esta función determina el miembro de una serie que presenta el mayor valor para una variable determinada:
FIX(“Ventas”)
@MAX(lista de miembros);
ENDFIX
En este ejemplo esta función determina el miembro de una lista que presenta las mayores ventas. Su estructura consta de un único componente:
@MAX(lista de miembros)
Esta lista de miembros se puede especificar de diversas maneras:
- Una lista individual de miembros: @LIST(Barcelona, Madrid, Alicante)
- Una función que determina un grupo: @RELATIVE(Mercados,0)
Como hemos visto en el ejemplo anterior esta función se utiliza dentro de un FIX en el que se especifica la variable para la que se calcula el máximo:
FIX(“Ventas”)
@MAX(lista de miembros);
ENDFIX
Veamos un ejemplo: Hemos creado un miembro “Primer mercado” para recoger el mercado que tiene las mayores ventas:

FIX(“Ventas”)
“Primer mercado” = @MAX(@RELATIVE(“Mercados”,0));
ENDFIX
El resultado de esta función es:
“Primer mercado” = Madrid
Cualquier consulta envía, por favor, un correo a: essbaseeasy@gmail.com