Reputation: 1195
I am trying to filter out one value from the array using a Set Variable & Filter activities, but i am not getting the filtered value in the filter activity output. Could you please guide me to make it work as expected?
1.Set Variable activity
2.Filter Activity
3.
Output { "ItemsCount": 1, "FilteredItemsCount": 0, "Value": [] }
Upvotes: 0
Views: 3000
Reputation: 8660
You should set the Var
variable like this: abc,def
and the expression in the Filter activity should be like this:@equals(item(),'abc')
.
Screenshots:
Upvotes: 1