I am setting my Jmeter variable using this:
${__setProperty(id_${__threadNum},${id},)}
And using this in another request like this:
${__P(id_${__threadNum},)}
However I want to run the loop instead of the thread. How can i change it to so it is loopNum instead of the thread
Can i use this below when i want to use the loop instead of the thread
I am setting my Jmeter variable using this:
${__setProperty(id_${__iterationNum},${id},)}
And using this in another request like this:
${__P(id_${__iterationNum},)}
This is how i want to run it

