I need an output that leaves out all hits with more than one instance.
From this example:
Pers ID Application number
777777 1
666666 1
666666 2
444444 1
I would like this output:
Pers ID Application number
777777 1
444444 1
I would like both to be able to pick out the instances with reference to the person's ID and the application number respectively. But I really can't hack it at all.