Do you have any idea on how to check if all values in array matched in appian?
example
arrayValue = {true,true,true}
returns "All Elements are Same"
else returns "Not the same"
Discussion posts and replies are publicly visible
Another option using difference:
a!localVariables( local!arrayval: {true, true, 1, "hello"}, if( length(difference(local!arrayval,local!arrayval))=0, "All values are the same", "All values are not the same" ) )