web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Inserting or Submittin...
Power Apps
Unanswered

Inserting or Submitting Data without Using a Form

(1) ShareShare
ReportReport
Posted on by 8

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!

Categories:
I have the same question (0)
  • Suggested answer
    kasraouiah Profile Picture
    305 on at
    Hello,
     
    I recommand you to use Patch() function
     
    i show you below example of use 
     
    Patch(tableName, {attribute1: component_x.value}) 
  • Verified answer
    timl Profile Picture
    36,383 Super User 2025 Season 2 on at
    Hi @FA-27120653-0
     
    Is there any reason why you don't want to use a form, as that would be the easiest way to save data?
     
    If you want to gather data by taking multiple inputs individually, you would need to call the Patch function like so:
     
    Patch(
        YourDataSource,
        Defaults(YourDataSource),
        {
            Field1: TextInput1.Text,
            Field2: TextInput2.Text,
            Field3: TextInput3.Text
        }
    )
    To enable the save button only when mandatory fields are entered, you can add this to the DisplayMode property of the button.
     
    If(
        IsBlank(TextInput1.Text) || IsBlank(TextInput2.Text) || IsBlank(TextInput3.Text),
        DisplayMode.Disabled,
        DisplayMode.Edit
    )

    In terms of what Data Platform to use, Patch will work with all popular data sources including SharePoint and Dataverse.
     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 717 Most Valuable Professional

#2
Michael E. Gernaey Profile Picture

Michael E. Gernaey 329 Super User 2025 Season 2

#3
Power Platform 1919 Profile Picture

Power Platform 1919 268

Last 30 days Overall leaderboard