hi,
I have two arrays,{"","1"} and {"2","3"}
I want to merge them, but exclude null and have something like this
{"1","2","3}.
Any help is appreciated
Discussion posts and replies are publicly visible
a!localVariables( local!a: { "", "1" }, local!b: { "2", "3" }, a!forEach( items:{local!a,local!b}, expression: if(isnull(fv!item),{}, fv!item) ) )