Hi all
Let’s say I have a list:
[Name] [employee#] [course]
John Smith 001 Visual Basic basics
John Smith 001 Visual Basic advanced
Jane Smithee 002 Visual Basic basics
Now I want the list to show everyone who has never followed “Visual basic advanced”
You can make a filter: [course]<>”Visual basic advanced”
The result is:
[Name] [employee#]
John Smith 001
Jane Smithee 002
Obviously John Smith did follow “Visual basic advanced”, but he still shows in this list.
My wanted result should look like this:
[Name] [employee#]
Jane Smithee 002
In ms-access you can create a unmatched query and so on for a situation like this.
But is there a way to accomplish the same with a sharepoint list?
Thanks in advance!