Beginner Tutorial: How to Write Multiple Lines at a Time in Power Apps is a great tutorial that shows how to create a Power App that allows you to write multiple lines of text at the same time. The tutorial goes step by step through the process of creating the app and explains the concepts used in the process. It also explains the different components of the app and how to use them to create the desired effect. In the end, the tutorial will show you how to publish your app so that it can be shared with others.
My name is Andrew Hess and I have been creating Power Apps and Power Platform tutorials. This video sparked from a question in the comments from one of my other videos. How to write multiple lines at a single time to a datasource?
Today we go over using Collect and ForAll statements in 2 different ways to write to our datasource which was SharePoint.
Collect from a Form:
Collect(colMenu,{Title:DataCardValue1.Text,FoodType:DataCardValue2.Text,Allergies:DataCardValue3.Text, Calories:DataCardValue4.Text})
ForAll from a Form Collection:
ForAll(colMenu,Patch(Menu,{Title:Title,FoodType:FoodType,Allergies:Allergies,Calories:Calories}));
Clear(colMenu)
ForAll using a Gallery:
ForAll(Gallery2.AllItems,Patch(Menu,{Title:TextInput1.Text,FoodType:TextInput1_1.Text,Allergies:TextInput1_2.Text,Calories:TextInput1_3.Text}));
Clear(myInput)