
I am a newbie to powerapps so i apologize if its a simple question and appreciate your help in advance. I am customizing a SharePoint form. I am adding a new text input field next to a drop down choice that will populate if someone selects "yes". How can I have the contents the person enteres into that new text input field on the form captured and added to one of my blank Multi line text fields in sharepoint?
Thank you in advance for your help
Hi @Earl20 ,
I am assuming that "next to" infers in the same card? You could do this on the OnSuccess of the Form
Patch(
ListName,
{ID:Self.LastSubmit.ID},
{YourMultiLineTextField:YourTextBox.Text}
)
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.