Hi,
I am working on an app where User suggest new ideas for team development. This involves filling up a form which includes something like "Idea Title", "Added_Date", "User_Name", "User_ID", "Idea_Benefits" and so on. All of the field has a textbox for user to fill it up but for the "Idea_Benefits", it should be in checkbox. Something like :-
[ / ] Business Growth
[ ] Workforce Improvement
[ / ] Moral Development in Team ------------------> Options to select
[ ] Time Management
{Submit} -----------------> Button to submit the selected option above
What I'm trying to achieve is that when I select some of the option and click submit, it should submit the selected value at the backend which locates in excel online in Onedrive. The output in the column in this case after submit should be like "Business Development, Moral Development in Team"
Table Name : Idea
Column Name : 'Idea_Benefits'
Hope you all can help me out with this
Thanks in advance.
Solved! Go to Solution.
Hi @Anonymous ,
Do you want to save checked value to one row with comma as separation?
If so, I've made a similar test for your reference:
1)insert 4 checkboxes
set Checkbox1's Text:
"Business Growth"
set Checkbox2's Text:
"Workforce Improvement"
set Checkbox3's Text:
"Moral Development in Team"
set Checkbox4's Text:
"Time Management"
2)the patch formula:
Patch(Idea,Defaults(Idea),
{'Idea_Benefits':
Left(
If(Checkbox1.Value,Checkbox1.Text&",","")&
If(Checkbox2.Value,Checkbox2.Text&",","")&
If(Checkbox3.Value,Checkbox3.Text&",","")&
If(Checkbox4.Value,Checkbox4.Text&",",""),
Len(
If(Checkbox1.Value,Checkbox1.Text&",","")&If(Checkbox2.Value,Checkbox2.Text&",","")&
If(Checkbox3.Value,Checkbox3.Text&",","")&If(Checkbox4.Value,Checkbox4.Text&",","")
)-1
)
}
)
Best regards,
Hi @Anonymous ,
Do you want to save checked value to one row with comma as separation?
If so, I've made a similar test for your reference:
1)insert 4 checkboxes
set Checkbox1's Text:
"Business Growth"
set Checkbox2's Text:
"Workforce Improvement"
set Checkbox3's Text:
"Moral Development in Team"
set Checkbox4's Text:
"Time Management"
2)the patch formula:
Patch(Idea,Defaults(Idea),
{'Idea_Benefits':
Left(
If(Checkbox1.Value,Checkbox1.Text&",","")&
If(Checkbox2.Value,Checkbox2.Text&",","")&
If(Checkbox3.Value,Checkbox3.Text&",","")&
If(Checkbox4.Value,Checkbox4.Text&",",""),
Len(
If(Checkbox1.Value,Checkbox1.Text&",","")&If(Checkbox2.Value,Checkbox2.Text&",","")&
If(Checkbox3.Value,Checkbox3.Text&",","")&If(Checkbox4.Value,Checkbox4.Text&",","")
)-1
)
}
)
Best regards,
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
201 | |
179 | |
62 | |
32 | |
30 |
User | Count |
---|---|
324 | |
267 | |
104 | |
74 | |
56 |