May I know how can I display the exact same value from the first Combobox filter list on Screen1, and display the same value without needing to select again?
Appreciate your help.
May I know how can I display the exact same value from the first Combobox filter list on Screen1, and display the same value without needing to select again?
Appreciate your help.
It's not a text box, it's a dropdown. That's a difference. You need to set the default value for the control and point it to the current value of the control on the other screen.
If the dropdown control on the left is called MyDropdown1
, then you can use this as the default value in the dropdown control on the right:
MyDropdown1.Selected.Value
The exact syntax may be a little bit different, depending on the data source of the dropdown.
Of course, you can avoid all that by using only one screen instead of several screens. Show and hide elements of the screen based on field values and leave the dropdown at the top visible at all times.
OnChange
property of Screen1 Dropdown to:Set(varVehicle, dropdown1.Selected.Value
Default
property of Screen2 Textbox control to:varVehicle