How do I write an (array) formula to extract distinct values that do not occur in a second list?
For example
Source list
- Apple
- Apple
- Banana
- Carrot
- Carrot
- Blueberry
Exclusion list
- Carrot
Expected output
- Apple
- Banana
- Blueberry



=CONCAT(SI($A$1:$A$5<>$C$1;$A$1:$A$5))but entered as ArrayFormula, and where A1:A5 would be your source list and C1 would be Exclusion list. That would be only a part, still need to remove duplicates. Have you tried something?