Hi,
I have 2 separate arrays in my flow that contain some of the same data. I want to remove the items from array (A) that are also present in array (B).
So
(A) = [111, 222, 333, 444]
(B) = [111, xxx, 444]
Should result in
(C) = [222, 333]
Any clue what would be the best way to do this?
Thanks

Report
All responses (
Answers (