I'm sure this is very easy (I'm a beginner!), but I couldn't find a solution.
I would like to import two arrays from .csv-files, then compare the two and return the values which DO appear on List1 and are NOT on List2. So List1 minus List2 = my result.
List1 could look like: 100,200,300,400 and List2 100,200. I would then like to return 300,400.
(If List 2 should happen to have some values which are not in List 1, I'd like it to run anyway and not give an error, but I figure it wouldn't?)
Thanks in advance for any tips/pointers or code, should you be so kind :-)