Hi all,
I have the following scenario. A sharepoint list of mine contains news records. So each row in the list represents one news article.
Each article will get its automated ID from Sharepoint by default, but I also have a column named NewsIdentifier which I fill myself with a unique value.
I want to display these articles in a gallery. Assume the list is named News, the Items property of my gallery will be News.
Now I want to introduce a 2nd gallery, which will always show all items from the News list, so no filters whatsoever. So the Items property is set to News, just like initially the first gallery.
When a user selects an article from the first gallery, e.g. NewsIdentifier 1 and marks it as read (by pressing a button which will Patch the NewsIdentifier to a second sharepoint list named NewsRead in a column named NewsID) I want the gallery 1 to no longer show that article since it's identifier is now part of NewsArchive.
So it needs to filter somehow like Filter(News,LookUp(NewsArchive, NewsID <> NewsIdentifier))
However, I want to avoid any delegation issues. Hopefully I explained things a bit clearly, is there any way to achieve this?
Since overtime my newsarticles will be > 2.000 and I want gallery 1 to only show items which have not been marked as read yet and gallery 2 should always contain all articles (and I will introduce some search fields later to help the user narrow down the articles).
Any ideas? Many thanks in advance.