I am customizing the Site Inspection app. I want a drop down so that our guys in the field can select which region they are with. I have added the card, unlocked it, added the control, and I have the region choices showing in the drop down. However, when I run a test the selected region is not apprearing in the approporate cell on the excel spreadsheet. The field is blank. Help please!
Datacard
Dropdown
Solved! Go to Solution.
Hi @stacyb,
I will share a short explanation about the form control.
A Form control is used to display or edit/Update record from a Table (Data Source), with Data Source property set to table, and item property set to the proper record.
For Each field(Column) in the table, there would be a corresponding DataCard generated, which is used to show the column name and the related value.
Specially, for EditForm, for each DataCard, there would be an Update property, which is used to Update the value of the related fields.
Read more here:
Understand data forms in Microsoft PowerApps
In addition to adding the dropdown control, you would also need to modify the Update property of the corresponding DataCard,
For example, if here you would like to update the field with the Dropdown selected value, then we should modify the update property of the DataCard to:
Dropdown.selected.value
For more information about DataCard, check:
Regards,
Michael
Hi @stacyb,
I will share a short explanation about the form control.
A Form control is used to display or edit/Update record from a Table (Data Source), with Data Source property set to table, and item property set to the proper record.
For Each field(Column) in the table, there would be a corresponding DataCard generated, which is used to show the column name and the related value.
Specially, for EditForm, for each DataCard, there would be an Update property, which is used to Update the value of the related fields.
Read more here:
Understand data forms in Microsoft PowerApps
In addition to adding the dropdown control, you would also need to modify the Update property of the corresponding DataCard,
For example, if here you would like to update the field with the Dropdown selected value, then we should modify the update property of the DataCard to:
Dropdown.selected.value
For more information about DataCard, check:
Regards,
Michael
User | Count |
---|---|
140 | |
133 | |
79 | |
75 | |
74 |
User | Count |
---|---|
210 | |
200 | |
71 | |
66 | |
55 |