Is there any possibility to pass a value of user defined variable in another user defined variable? How to do this?
I've got a variable (name | value):
version | 5.6
and I want to use it in another one:
config | config_${version}.csv
It does not work because ${version} is treated as a string not as variable.
I've tried it with __eval function (the same) and with __P (then value of variable config was config1.csv, so ${version} was treated as a 1.
I'm using JMeter 3.3.


