Hello,
I was building a survey and wondered if I could do the following:
I have a select_one which determiens a type of object I will be capturing information from
- if I select object_1, then I'll be collecting some info with items such as object_1_characteristic_1, object_1_characteristic_2, object_1_characteristic_3, etc
- if I select object_2, then I'll be collecting some info with items such as object_2_characteristic_1, object_2_characteristic_2, object_2_characteristic_3, etc
There is a relevant ${object} = 'object_1' for example, so that only the relevant question and answers for each object appear.
My question is, is there a way to have a note at the bottom, that will capture a different data captured earlier?
Ideally, I wanted to have something like $(TYPE_OF_OBJECT_characteristic_1), where the TYPE_OF_OBJECT is a variable (object_1, object_2...). However, it seems that these placeholder values after a dollar sign do not accept a variable string inside, only a hardcoded one.
Do you think is there a way I could have a sort of $(VARIABLE_DATA_HERE) type of placeholder, where the data is selected based on a previous select_one question?
Thanks a lot,