Elements of a list not correctly shown in Eingabedialog
Posted: 21 Apr 2013 08:56
Hi,
if you want to show elements of a list (list=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) in Eingabedialog, elements will be showed this way:
[1
2
3
4
5
6
7
8
9
10]
If you use the variable 'value' (=selected element),
it includes '[' and ']' and ' ' (=space).
Therefore you have to use the following syntax to show the elements correctly:
{replace(replace(replace(list,"[",""),"]","")," ","")}
It would be better without this work around.
http://automagic4android.com/flow.php?i ... daa1cf2018
if you want to show elements of a list (list=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) in Eingabedialog, elements will be showed this way:
[1
2
3
4
5
6
7
8
9
10]
If you use the variable 'value' (=selected element),
it includes '[' and ']' and ' ' (=space).
Therefore you have to use the following syntax to show the elements correctly:
{replace(replace(replace(list,"[",""),"]","")," ","")}
It would be better without this work around.
http://automagic4android.com/flow.php?i ... daa1cf2018