I want to merge two different DF. When I utilize your solution for two different DF, I can't merge them because order of names are different in two DF (first DF James-Michael-Mike, second DF Michael-James-Mike).
How can I merge two different order name list? Thank you.
Hmm, well, you did specifically mention that name order didn't matter...
You could either, sort the names on both data frames, or else where I overwrote the name column, you could put it in a new column, then merge on the original.
Otherwise, try posting another question and provide appropriate data