Hello,
I built an application on several screens, in one of these screens, let's call screen number 2, I have a drop-down list with values. I want that when a value from this list is selected, it is saved in a variable with the SET () function, then when we click on a button, the PATCH function takes care of updating a field on screen number 1 with the value from the drop-down list on screen 2.
Here is my code:
I initialize a variable VAR_travaux_EP1 with a dropdownlist selected values :
Set(VAR_travaux_EP1;DataCardValue225.Selected.Value)
then
i migrate the dropdownlistselected values in the first screen in the field : "TRAVAUXEP1essai"
Patch('Quick Check';First(Filter('Quick Check'; ID = idcourant));{TRAVAUXEP1essai:VAR_travaux_EP1})
I don't understand why it doesn't work... Maybe it is not possible to check dprodown list whith a patch function ?