Hello Power Platform Pros,
As a beginner, I’ve learned that data can be collected using a form in Power Apps. However, I’m aiming for a different approach. Instead of using a form, I’d like to gather data by taking multiple inputs individually, and then include a Submit button at the bottom. When all the inputs are filled, I want the Submit button to save the data.
I’m struggling to find a solution to implement this, and would greatly appreciate it if the Power Platform Gurus could guide me. Additionally, I’d love to know which data platform I should connect with for this purpose.
Your expertise would be greatly appreciated!
Patch(
YourDataSource,
Defaults(YourDataSource),
{
Field1: TextInput1.Text,
Field2: TextInput2.Text,
Field3: TextInput3.Text
}
)
If(
IsBlank(TextInput1.Text) || IsBlank(TextInput2.Text) || IsBlank(TextInput3.Text),
DisplayMode.Disabled,
DisplayMode.Edit
)