Linking variables - Forum

Forum Navigation
You need to log in to create posts and topics.

Linking variables

Gracias por anticipado por su ayuda.
Estoy tratando de concatenar información contenida en 4 variables y presentarla como un solo campo. Mi pregunta es ¿cómo se "enlazan" las variables? Ej: Se creó un arreglo MiVar para almacenar la información y luego utilizarlo así:
SetVar [Info] [MiVar(0) & MiVar(1) & MiVar(2)
¿Qué está mal en el ejercicio?

Thanks in advance for your help.
I am trying to concatenate information contained in 4 variables and present it as a single field. My question is how do you "bind" the variables? Ex: A MyVar array was created to store the information and then use it like this:
SetVar [Info] [MyVar(0) & MyVar(1) & MyVar(2)
What is wrong with the exercise to show the data?

Try like this:

 

 

CreateArray [MyVar] "Asmat,Qatea,23"
SetVar [Info] "[MyVar(0)] & [MyVar(1)] & [MyVar(2)]"

 

luishp has reacted to this post.
luishp