Dear community,
is it possible to set the value of variable Y depending on the current value of variable X (which is set via a dropdown in the App).
As further explanation, here is my usecase (maybe there is a different solution I am not aware of):
I am working on a task, where I have several tables, that should be editable in my App. A user is able to select one of the tables via a dropdown element, edit the selected table and trigger a microservice workflow after editing.
In this workflow I need to load the edited table (which works fine via the variable data_id provided) and additionally a second table where I need to change entries too depending on edited rows.
This second table is not the same, but there is a mapping between the edited table and this second one like:
edited table → second table
A → X
B → Y
…
So my task is to load both tables (A,X) or (B,Y) depending on which table is selected by the user (A or B). My approach would have been to use a second variable, that will be set by a fixed rule via the first variable.
Thanks in advance!
Christoph