
Announcements
Hi,
When you add a dropdown to a Power App that writes data to an Excel sheet, the OnChange property of the dropdown is typically used to update the corresponding field or variable in your data source. If the app stopped working after adding the dropdown, it could be due to a missing or incorrect connection between the dropdown's selection and the Excel update logic.
Here’s how you can resolve this:
Items property points to the correct data source or list of options. For example:
Or, if pulling data dynamically:
OnChange property of the dropdown, update the variable or field that is mapped to the Excel table. For example:
Update property for the associated card is configured to:
SubmitForm or similar function, ensure the dropdown’s selected value is being written to the correct field in Excel. For instance:
Label control temporarily to display:
Monitor: Open the app in Monitor (via the Power Apps Studio) to see if any errors occur when interacting with the dropdown.Assume you have a dropdown (Dropdown1) and a button to save the selection to an Excel sheet:
Dropdown Items:
Dropdown OnChange:
Button OnSelect:
This setup ensures the dropdown updates a variable (selectedStatus), and the button writes it to Excel.
----------------------------------------------------------------------------------
If this Post helped you, please click "Does this answer your question" and give it a like to help others in the community find the answer too!