I have combo box in simulation experiment screen as below :
There are 3 choices, Group 1, Group 2, and Group 3. I have make variables for this. but, how to make this variables links to database reference?
Database will be used for source Arrival table in database. I hope if I choice in experiment screen Group 1, then Group 1 table will be source data. Thanks you!
You cannot do it directly as you hope. But you could simply use an "if-else" statement: if the user chose "Group 1", load from the table_group1
and so on. Easiest approach.
Anything fancier will be a lot more complicated and probably not worth it :)