I am working on visitor request application.
The departments the visitors are planning to visit are chosen from the check boxes in MS form. The data is then written in SharePoint List. As the sharepoint list is updated via power automate, the field has square brackets by default.
I am making a field visible based on the value selected in he multi selected field.
If("Design" in VisitingAreaUpdateRequest.SelectedItems.Value || "Fabrication" in VisitingAreaUpdateRequest.SelectedItems.Value || "CAD" in VisitingAreaUpdateRequest.SelectedItems.Value,true,false)
Sharepoint list value has ["Design",Fabrication","CAD]
I want to make the people search field visible based on the departments chosen. If I choose the departments in the PowerApps form, I am able to see the respective manager (people search) field. But with the default data in the list, the manager field is not visible. I think it is because of the square brackets. I am not sure what is the best way to achieve this. Any help is highly appreciated. Thank you in advance.
