Hi,
I am trying to create a gallery search with ForAll. The ForAll code helps me to remove duplicate items in the SharePoint list which I need to operate. Also, I want to add search function to look for.
This code is located in gallery items:
ForAll(
Distinct(
'SharepointList',
Name
),
LookUp(
'SharepointList',
Name = Result
)
)
I want to add to this code a search value and I have a problem connecting it to ForAll, please let me know if this is possible somehow:
Search('SharepointList', TextInputSearch.Text, "Name")
Both codes work as they should be only they need to be separated, when I want to add them together using "; " I have an error: we expecting operators such as "+" or "&" at this point,
Thanks for help or a different solution