I have a table structured as follows:
Item Name (Text) | Associate (Link to 'Item Name')
------------------|--------------------------
Alice Johnson | `Bob Brown`
Bob Brown | (No Value)
Charlie White | `Diane Green` `Eve Blue`
Diane Green | (No Value)
Eve Blue | (No Value)
Frank Black | (No Value)
I want to establish a new view for this table with a filter that looks like:
WHERE {Associate (field)} is not null
OR {Associate (field)} does not include {Item Name}
This should yield the following results:
Item Name (Text) | Associate (Link to 'Item Name')
------------------|--------------------------
Alice Johnson | `Bob Brown`
Charlie White | `Diane Green` `Eve Blue`
Frank Black | (No Value)
The difficulty I’m facing is that in the first filter condition, I want to find records with no links in the ‘Associate’ field, but in the second condition, I’m targeting records that are not listed in the ‘Associate’ field of other entries.
Ultimately, I aim to compile a list of records with no associates along with those who aren’t listed as an associate for anyone else. Can this be done?