Hello, I have an app and it’s been one year since I started working on it.
In this app, there is a BrowseGallery that takes items from a SharePoint list. In this list, we have a column that contains data about projects stored in another SharePoint list.
I have a DetailForm on another screen that takes information from a line in the first SharePoint list and displays it. You can also edit the line or create a new one.
On the final screen, I have an EditForm and I want the dropdown menu to only show projects where the STATUS isn’t “CLOSED.” I have tried many things, but nothing seems to work.
My first idea was to add the second SharePoint list to my app and change the Items property of the dropdown to show every project that is not “CLOSED.” But it didn’t work, because when I saved the line in the first SharePoint list, the project field was empty.
Then I tried to use Lookup to get the STATUS from the second list, but that didn’t work either because STATUS is a Choice column. I then created a text column with “CLOSED” for projects that are closed, added this column to the first list, and tried to get every distinct project where it wasn’t “CLOSED.” That also didn’t work, and even if it did, I don’t think it would have shown newly added projects from the second list, because they wouldn’t be in the first list.
If you need more information, like screenshots or other details, I can share them!
Thanks in advance for your help.