Hello Power Apps Community,
I am working on a Power Apps canvas application. In my form (screenshot attached), I have a ComboBox bound to a specific column in my data source. However, after publishing the app, It will automatically change to another column like compliance ID ComboBox to dynamically display data from a different column based on user input or other conditions.
For example, in the "District" field in the screenshot, I want it to initially display data from "Column A." After publishing, it automatically fetch another data from "Column B" instead.
Could you guide me on how to achieve this? Should I modify the Items property of the ComboBox, or is there another best practice for this scenario?
Any examples or steps would be greatly appreciated!
Thanks in advance!
If
statement in the Items
property to dynamically determine the data source or column based on the variable. If(SelectedColumn
variable dynamically. OnChange = UpdateContext({ SelectedColumn: Dropdown1.Selected.Value })SelectedColumn
variable in the app’s OnStart
property to set the default column. Set(SelectedColumn, "ColumnA")Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.