Hi all,I have a requirement to add all arrays (say array1,array2, and array3 ) and display them in 3 lines,Exmple : Country:{"India","china","USA"},State:{"Bangalore","Fujian","Texas"}Language:{"Kannada","Mandarin","English"}
I used merge and joinarray functions,joinarray(merge(local!Country,local!state,local!language),"-")required op in three separate lines as below:india - bangalore - kannada china - Fujian - Mandarinusa - texas - EnglishHow this can be achieved. Any suggestions will be appreciated.
Discussion posts and replies are publicly visible
a!localVariables( local!Country:{"India","china","USA"}, local!State:{"Bangalore","Fujian","Texas"}, local!Language:{"Kannada","Mandarin","English"}, a!forEach( items: merge(local!Country,local!state,local!language), expression: joinarray( fv!item, " - " ) ) )