Hello,
I am hoping someone can help me with an issue I am having which I will attempt to explain. I want to create a form manually in PowerApps. So instead of using the edit form option and the connecting to data I want to build and design the form myself by bringing labels and text inputs etc. The problem I am having is when I do this I can't seem to connect to the data source. So If I used the edit form it would connect to the data automatically but I want to design the form myself.
Does anybody have a solution to my problem?
Thanks
Abdullah
Here's a great place to start! https://baizini-it.com/blog/index.php/2017/09/28/powerapps-101-create-your-own-forms/ @Meneghino 's blog has many good posts for beginners too.
When you use the manual process as you described, you have to use the Patch function to be able to save to the datasource:
Patch function in Power Apps (contains video) - Power Apps | Microsoft Docs
Example:
Patch(Table2, Defaults(Table2),
{Column1: Textinput1.Text,
Column2: Label3.Text,
Column3: Value(Textinput4.Text)})
You can then use a Gallery to view the saved records from the datasource.
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
User | Count |
---|---|
204 | |
97 | |
60 | |
51 | |
46 |
User | Count |
---|---|
255 | |
158 | |
87 | |
79 | |
59 |