Hi,
Apologies I'm new to PowerApps after spending time using PowerAutomate and LogicApps.
Solved! Go to Solution.
Hi@louielt,
Based on the issue that you mentioned, do you want to patch all the corresponding values to the controls within your screenshot?
Could you please share a bit more about your scenario, are there the same columns to store the values you want to patch?
@Anonymous wrote:Forms won't work because there's some free-hand text that I'd like to capture too and slider buttons too. Any quick help would be appreciated, hoping it should be an easy enough task.
What is this "Free-hand text", I could only see a TextInput control for comments from the screenshot?
If you want to save pictures to the SharePoint list, PowerApps could not achieve this directly.
As an alternative solution, you can use Attachment control within an EditForm.
Form.Updates could successfully save attachments to the SP list. You should replace your AddPicture with the Attachment control.
Here is a standard formula you can check for reference:
Patch(
'YourSPList',
Defaults('YourSPList'),
{
Column1:CheckBox1.Value,
Column2:ComboBox1.Selected,
Column3:Slider1.Value,
...,
ColumnN:TextInput1.Text
},
EditForm1.Updates
)
Best Regards,
Qi
Hi @Anonymous
You can use the Patch function to achieve this. Also, @Shanescows has a video explaining the function with some examples. Please check them out and let us know if you have any questions.
Patch Function Documentation
Regards,
Hi@louielt,
Based on the issue that you mentioned, do you want to patch all the corresponding values to the controls within your screenshot?
Could you please share a bit more about your scenario, are there the same columns to store the values you want to patch?
@Anonymous wrote:Forms won't work because there's some free-hand text that I'd like to capture too and slider buttons too. Any quick help would be appreciated, hoping it should be an easy enough task.
What is this "Free-hand text", I could only see a TextInput control for comments from the screenshot?
If you want to save pictures to the SharePoint list, PowerApps could not achieve this directly.
As an alternative solution, you can use Attachment control within an EditForm.
Form.Updates could successfully save attachments to the SP list. You should replace your AddPicture with the Attachment control.
Here is a standard formula you can check for reference:
Patch(
'YourSPList',
Defaults('YourSPList'),
{
Column1:CheckBox1.Value,
Column2:ComboBox1.Selected,
Column3:Slider1.Value,
...,
ColumnN:TextInput1.Text
},
EditForm1.Updates
)
Best Regards,
Qi
User | Count |
---|---|
253 | |
122 | |
106 | |
54 | |
48 |