I want to have a simple customized SharePoint list form (not a custom Power App) that has a field that allows multiple selections AND ends up being a filterable column in the list but nothing I'm trying is working. I want the users to be able to go to the SharePoint list and filter the column results to find all people who are assigned a specific collateral duty, the values for which are stored in another list.
Lookup column: doesn't allow you to connect to a list outside of the current site; even when I'm trying to connect to a list on the same site this isn't working (see below)
Choices column: has to be prepopulated with values (right?)
Text column: only filterable if you have a single value
Multiple line text column: not filterable
We have a site with data standards lists on it and I want to be able to connect to those. I can do this without any issues when I need to only pull in one single value. Customized the list form in Power Apps, added data connections, added comboboxes, everything works great.
One of my data sources (Collateral Duties) can remain on the same site as my main list (Staffing Tracker) because it's only an internal data standard for my specific office so I figured I would use a Lookup column for this, set to allow multiple selections. However, it just flat out doesn't work. When I first go to the customized list form design in Power Apps, the combobox for the Lookup field shows "Item 1" through "Item 15" instead of the actual 45 values it should. Then when I unlock the card, the values then show up BLANK. Then I tried adding .Value to the end of the Items property so it equals:
Items: Choices([@'ORM-TODStaffingTracker'].CollateralsLookup).Value
Now THIS shows the values in the list and allows me to pick multiple. But I can't figure out how to further edit the Update property of the card to get these values back into the list or edit the DefaultSelectedItems property to display multiple values when the user opens an existing record:
Update: DataCardValue9.SelectedItems << This only submits back the last value selected
DefaultSelectedItems: Parent.Default
I've read so many different forum posts and nothing seems to work correctly for this requirement. I even tried adding the values for collateral duties to a multi-select Choices column because I was at my wit's end and now that the list form has been customized, that doesn't even work! Plus, I have no idea how I would ever get this to work if I actually needed to allow the selection of multiple values from one of the data standards lists we have on a separate SharePoint Online site!
Any guidance would be greatly appreciated!