Hello,
I am trying to create a search field with the element id
SortByColumns (Filter (Filter (Filter ([@ 'Regimen']);
StartsWith (Text (ID); TextInput2.Text));
StartsWith (Title; TextInput1.Text));
"Title";
If (SortDescending1; Descending; Ascending))
But I can't make it work. Someone could help me.
I was guided by the following example, but I still can't get it to work
Guide link: https://powerusers.microsoft.com/t5/Building-Power-Apps/Can-PowerApps-search-the-Default-ID-field-in-SharePoint/td-p/124659#:~:text = Unfortunately% 2C% 20PowerApps% 20will% 20not% 20let, in% 20SharePoint% 20by% 20doing% 20this.
I hope you can help me, thank you very much.
Solved! Go to Solution.
Hi @Anonymous ,
I assume you want an Or() filter as the first search on ID will always produce one record.
SortByColumns(
Filter(
[@ 'Regimen'];
ID=Value(TextInput2.Text) ||
StartsWith(Title; TextInput1.Text)
);
"Title";
If(
SortDescending1;
Descending;
Ascending
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @Anonymous ,
I assume you want an Or() filter as the first search on ID will always produce one record.
SortByColumns(
Filter(
[@ 'Regimen'];
ID=Value(TextInput2.Text) ||
StartsWith(Title; TextInput1.Text)
);
"Title";
If(
SortDescending1;
Descending;
Ascending
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @Anonymous ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
User | Count |
---|---|
122 | |
87 | |
86 | |
75 | |
67 |
User | Count |
---|---|
214 | |
181 | |
137 | |
96 | |
83 |