Skip to main content
Community site session details

Community site session details

Session Id : MHNlFGQ03zCHcpSES8BM+z
Power Apps - Building Power Apps
Answered

save either selecteditem or search text

Like (0) ShareShare
ReportReport
Posted on 16 Jun 2023 06:20:43 by 44

Hello,

 

how would you save datas from combobox to shareponint list, 

in sharepont list i have lets say 20 names. 

combobox allows searching, 

 i have 20 names to save -- this one is combobox.selected items, 

if i have 21 name which is not in the list - it is combobox.searchtext

Can these two functions work together like this:

 

SubmitForm(Form1);

Patch('name_list',Defaults('name_list'),

{names:ComboBox1.Selected.names, or names: Combobox1.SearchtText})

 

When i write it like this - in sharepont is appearing fasle. 

So is it possible to save either selected items or searchtext depens which one is blank ??

 

Thanks

Categories:
  • Verified answer
    WarrenBelz Profile Picture
    148,985 Most Valuable Professional on 16 Jun 2023 at 07:05:40
    Re: save either selecteditem or search text

    Hi @11playto16 ,

    Try this

    Patch(
     'name_list',
     Defaults('name_list'),
     {
     names:
     Coalesce(
     ComboBox1.Selected.names,
     Combobox1.SearchText
     )
     }
    )

     

    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.

    MVP (Business Applications)   Visit my blog Practical Power Apps

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Announcing our 2025 Season 2 Super Users!

A new season of Super Users has arrived, and we are so grateful for…

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 637 Most Valuable Professional

#2
stampcoin Profile Picture

stampcoin 570 Super User 2025 Season 2

#3
Power Apps 1919 Profile Picture

Power Apps 1919 473

Loading complete