Finding values in a list
If I have a list:List = {Henry(1,2), Robert(3,4), John( . ,6), Kai(13, . ) };But the position of names is always different for different tables,List = {Henry(1,2), Robert(3,4), Kai(13, . ), John( . ,6) };and sometimes certain names are missing too.List = {Henry(1,2), Robert(3,4) };I know we can use Contains(List, List[1]) but that way, we consider the position of values in a list. I want to know ...