Z zmike Client Регистрация 24.10.2019 Сообщения 133 Благодарностей 8 Баллы 18 23.09.2020 #1 Is it possible to add data to an existing variable? I have variable A and variable B I need to merge them into variable C
Is it possible to add data to an existing variable? I have variable A and variable B I need to merge them into variable C
VladZen Administrator Команда форума Регистрация 05.11.2014 Сообщения 22 453 Благодарностей 5 913 Баллы 113 23.09.2020 #2 You should use Add action>Data>Variables processing or Own code>Javascript for math actions with values: JavaScript: {-Variable.var1-}+{-Variable.var2-}
You should use Add action>Data>Variables processing or Own code>Javascript for math actions with values: JavaScript: {-Variable.var1-}+{-Variable.var2-}
Z zmike Client Регистрация 24.10.2019 Сообщения 133 Благодарностей 8 Баллы 18 23.09.2020 #3 VladZen сказал(а): You should use Add action>Data>Variables processing or Own code>Javascript for math actions with values: JavaScript: {-Variable.var1-}+{-Variable.var2-} Нажмите, чтобы раскрыть... Can the code maintain the line break? Because {-Variable.var1-} is actually 1 2 3 4 {-Variable.var2-} is a b c d e I wish the final result to be 1 2 3 4 a b c d e So there is not blank line between var1 and var 2
VladZen сказал(а): You should use Add action>Data>Variables processing or Own code>Javascript for math actions with values: JavaScript: {-Variable.var1-}+{-Variable.var2-} Нажмите, чтобы раскрыть... Can the code maintain the line break? Because {-Variable.var1-} is actually 1 2 3 4 {-Variable.var2-} is a b c d e I wish the final result to be 1 2 3 4 a b c d e So there is not blank line between var1 and var 2
VladZen Administrator Команда форума Регистрация 05.11.2014 Сообщения 22 453 Благодарностей 5 913 Баллы 113 23.09.2020 #4 zmike сказал(а): Can the code maintain the line break? Because {-Variable.var1-} is actually 1 2 3 4 {-Variable.var2-} is a b c d e I wish the final result to be 1 2 3 4 a b c d e So there is not blank line between var1 and var 2 Нажмите, чтобы раскрыть... Code is for math operations only You should use Processing variable action block.
zmike сказал(а): Can the code maintain the line break? Because {-Variable.var1-} is actually 1 2 3 4 {-Variable.var2-} is a b c d e I wish the final result to be 1 2 3 4 a b c d e So there is not blank line between var1 and var 2 Нажмите, чтобы раскрыть... Code is for math operations only You should use Processing variable action block.
K kingbin Пользователь Регистрация 22.03.2019 Сообщения 74 Благодарностей 13 Баллы 8 23.09.2020 #5 Simply, try this with Text Processing action block: {-Variable.var1-} {-String.Enter-}{-Variable.var2-}
Simply, try this with Text Processing action block: {-Variable.var1-} {-String.Enter-}{-Variable.var2-}