cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

¿can powerapps search the default 'id' ?

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.
1 ACCEPTED SOLUTION

Accepted Solutions
WarrenBelz
Super User
Super User

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.

 

View solution in original post

2 REPLIES 2
WarrenBelz
Super User
Super User

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.

Helpful resources

Announcements
Power Apps News & Annoucements carousel

Power Apps News & Announcements

Keep up to date with current events and community announcements in the Power Apps community.

Community Call Conversations

Introducing the Community Calls Conversations

A great place where you can stay up to date with community calls and interact with the speakers.

Power Apps Community Blog Carousel

Power Apps Community Blog

Check out the latest Community Blog from the community!

Top Solution Authors
Top Kudoed Authors
Users online (2,137)