On my dropdown I have 5 different options. I want to go to a different screen everytime a user selects a different option.
Currently I have a formula under items: Distinct(Table1, Protection) which is pulling the options from an excel sheet. I have 2 formulas working together, one under OnChange: UpdateContext({Switch1:true} and the other under fill: If(Switch1,RGBA( 74, 144, 226, 1 ),RGBA( 74, 144, 226, 0.2 )). This just changes the opacity from 20% to opaque when the user selects the dropdown.
My question is how do I combine 2 actions. I know that I must use a navigate action under OnChange, but there already is an action there.
Solved! Go to Solution.
you can add multiple functions just seperate them with ;
So for example your OnChange function would be
UpdateContext({Switch1:true}; Navigate(Screen2,None)
you can add multiple functions just seperate them with ;
So for example your OnChange function would be
UpdateContext({Switch1:true}; Navigate(Screen2,None)
User | Count |
---|---|
132 | |
127 | |
74 | |
72 | |
70 |
User | Count |
---|---|
206 | |
201 | |
64 | |
63 | |
52 |