@UDA

English (Español a continuación)

The function @UDA allows to select those members of the outline to which a specific UDA has been assigned.

This function consists of 2 parts:

  • @UDA (A, B)

Part A: specifies the dimension that has that specific UDA.

Part B: specifies the UDA we want to select.

Let’s see an example: we start from the following outline:

With the function:

  • @UDA («Markets», «big»)

We get the following members:

  • ANDALUCIA
  • BARCELONA
  • LEVANTE

This function can be used, for example, in a FIX to select certain members to which we want to apply a calculation.

For example:

  • FIX (@UDA (“Markets”, ”big”))
  • Sales = 5;
  • ENDFIX

For those members of the outline with UDA = «big» we make their sales equal to 5.

Español

La función @UDA permite seleccionar aquellos miembros del outline a los que se les ha asignado un UDA determinado.

Esta función consta de 2 partes:

@UDA(A,B)

Parte A: recoge la dimensión de los miembros que tienen ese determinado UDA

Parte B: recoge el UDA que se quiere seleccionar.

Veamos un ejemplo:

Partimos del siguiente outline:

Con la función: @UDA(“Mercados”,”big”)

Obtendríamos los siguientes miembros:

  • ANDALUCIA
  • BARCELONA
  • LEVANTE

Esta función se puede utilizar, por ejemplo, en un FIX para seleccionar determinados miembros a los que queremos aplicar un cálculo.

Por ejemplo:

FIX(@UDA(“Mercados”,”big”))

Ventas = 5;

ENDFIX

A aquellos miembros del outline con UDA = “big” igualamos sus ventas a 5.

Anuncio publicitario