Announcements
To achieve the functionality where you submit a DataCard value based on either a dropdown selection or a TextInput in PowerApps, especially when you have a condition that shows a TextInput if the dropdown selection is "Other", you can use an If statement within the DataCard's Update property. However, the correct syntax and logic are crucial to avoid errors.
If
Here's a step-by-step guide on how to set this up:
Dropdown1
TextInput1
Set the Visible property of TextInput1 to:
Visible
Dropdown1.Selected.Value = "Other"
This makes TextInput1 visible only when "Other" is selected in Dropdown1.
To submit the value from either the dropdown or the TextInput based on the condition, you will use an If statement in the Update property of the DataCard. The Update property should be set to something like this:
Update
If(Dropdown1.Selected.Value = "Other", TextInput1.Text, Dropdown1.Selected.Value)
This If statement checks if the selected value of Dropdown1 is "Other". If it is, it uses the text from TextInput1 for the update. Otherwise, it uses the selected value from Dropdown1.
Dropdown1.Selected.Text
Dropdown1.Selected.Value
By following these steps and considerations, you should be able to configure your DataCard to submit data based on either a dropdown selection or a TextInput value without encountering errors.
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.
Congratulations to our community stars!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
11manish 381 Super User 2026 Season 2
Mohsin Ali 340
WarrenBelz 187 Most Valuable Professional