List Minus or Subtraction
Hello all,
Is there a way in JMP to subtract one list from another, kind of like a SQL MINUS? For example I want to do the following:
biglist = {"a", "b", "c", "d", "e", "f", "g"};
shortlist = {"a", "b", "c"};
newlist = biglist MINUS shortlist;
Newlist would be {"d", "e", "f", "g"};
Thanks,
Peter