My powerapps form i have 3 repeating sections. when i select a gallery the repeating section data visible but send a mail to form the data not visible. Could you please give me examples of repeating section data.
Loading
My powerapps form i have 3 repeating sections. when i select a gallery the repeating section data visible but send a mail to form the data not visible. Could you please give me examples of repeating section data.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Shaik RafiPosted Aug 10, 2023, 2:12 PM
My powerapp form sending to reviewer. in this form 3 fields have repeated sections when i submit form it sends to reviewer. he is not able to show repetings section data. my data source is SharePoint.
Cr BhargaviPosted Aug 10, 2023, 12:30 PM
You would need to loop through the repeating section data and construct this string before sending the email. This could involve using a combination of the ForAll and Concatenate functions to build the email content
Mohammad HussainPosted Aug 9, 2023, 6:43 PM
Let's assume you have a PowerApps form with three repeating sections, each containing fields for Name and Age. Here's how you might structure the data and then send it in an email:
Data Structure: Let's assume you are using a collection to store the repeating section data. You can create a collection like this:
Repeating Sections in PowerApps Form: You have three repeating sections in your form, each bound to a specific section of the
RepeatingSectionDatacollection. Users can input Name and Age for each entry in the repeating section.Send Email Action: When you want to send the repeating section data in an email, you can use the
Concatenatefunction to format the data and then use it in the email's body.In this example, the
ConcatenateTablefunction is used to concatenate the Name and Age values for each entry in the repeating section. The resulting concatenated data is then used in the email body when sending the email.