@CONCATENATE

English (Español a continuación)

This function allows to join two text strings. Its structure is as follows:

  • @CONCATENATE(«Text1″,»Text2»);

More than two text strings can be joined, concatenating this function:

  • @CONCATENATE(«Text1»,@CONCATENATE(«Text2»,@CONCATENATE («Text3», «Text4»)));

You can use the name of a member of the Outline as one of the texts, but it must be included within the function @NAME().

  • @CONCATENATE(@NAME(Member),“Text2”);

If we want to use the result of the function @CONCATENATE to select a member of the Outline this function has to be included within the function @MEMBER():

  • @MEMBER(@CONCATENATE(«Text1″,»Text2»));

Let’s see an example:

  • Terms
    • 1T
    • 2T
    • 3T
    • 4T
  • Data
    • Sales_1T
    • Sales_2T
    • Sales_3T
    • Sales_4T

We can use the function:

  • @CONCATENATE(“Sales_”,@CURRMBR(“Terms”));

To define:

  • Sales_1T
  • Sales_2T

But to select these members of the outline we have to include this function within the function @MEMBER.

  • @MEMBER(@CONCATENATE(“Sales_”,@CURRMBR(“Terms”)));

Any question, please send an email to: essbaseeasy@gmail.com

Español

Esta función permite unir dos cadenas de texto. Su estructura es la siguiente:

@CONCATENATE(“Texto1”,“Texto2”);

Se pueden unir más de dos cadenas de textos, concatenando esta función:

@CONCATENATE(“Texto1”,@CONCATENATE(“Texto2”,@CONCATENATE(“Texto3”,“Texto4”)));

Se puede utilizar el nombre de un miembro del outline como uno de los textos pero para ello lo tenemos que incluir dentro de la función @NAME()

@CONCATENATE(@NAME(Miembro),“Texto2”);

Si queremos utilizar el resultado de la función @CONCATENATE para definir un miembro del outline tenemos que incluir esta función dentro de la función @MEMBER():

@MEMBER(@CONCATENATE(“Texto1”,“Texto2”));

Veamos un ejemplo:

Podemos utilizar la función:

Para definir:

Ventas_1T

Ventas_2T  

Pero para nombrar a estos miembros del outline  tendremos que incluirlos dentro de la función @MEMBER.

Cualquier consulta envía, por favor, un correo a: essbaseeasy@gmail.com

Anuncio publicitario