hi,
i am using a!forEach to create a list of variants and wanted to return the iteration item as Array/List itself
for eg,
a!localVariables( local!testVariable: { "A", "B", "C;D" }, local!valuesAsArray: a!forEach( items: local!testVariable, expression: if( length(split(fv!item, ";")) > 1, split(fv!item, ";"), fv!item ), ), local!valuesAsArray)
Above expression is returning results as {"A", "B", "C", "D"}
Instead i wanted the results as {"A", "B", {"C", "D"}}.
Any suggestions on how to achieve this
Discussion posts and replies are publicly visible
Hi palanir043114 ,You can't get the exact expected result as Appian will Flatten the list as we cannot seperately add few nested lists at the end.And this is the expected behaviour in Appian arrays.The Output Expression you get at most probable from Mike Schmitt & Vyshnavi Naripeddi expressions is {{"A"}, {"B"}, {"C", "D"}}