Is it possible to have an expression choose which list object to work with based off an external bit of data?
For example, I have the following lists:
List_Fruit
List_Vegetables
List_Meat
I also have a drop box with the following:
Fruit
Vegetables
Meat
Can I set up an event that will check "List_[string from the drop box]"? I've tried various obvious options and none have worked. The reason for this is I am playing with a scheduling program that draws from ~40 people, each of which had various skills (about 12 total skills) and is available at certain times (6 possible times). I made a list for each skill and each time, populating it with whoever fits those parameters. I'd like to use as few events as possible to dig through all these things, rather than making 40*12*6 separate series of events...