Solved
Check if all items in array are matched
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"
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"
a!localVariables(
local!arrayval: {true, true, 1, "hello"},
if(
count(union(local!arrayval, local!arrayval)) = 1,
"All Values are same",
"All values Not Same"
)
)Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.