How to select records not in association?

0
Company <--> People n-n relation How can I display below Company C a grid containing all P not yet associated with C? It seems as if I'm overlooking something very obvious....
asked
2 answers
2

If the grid on People is placed inside the data view on Company, this should do the trick:

[not(Module.Company_People/Module.Company = '[%CurrentObject%]')]
answered
0

[Module.Company_People/Module.Company != '[%CurrentObject%]']

Place the grid inside the dataview of the company and this should give you what you want.

edit: This is not correct. Benny's answer is correct.

answered