How to have unique data row from a CSV file to be used/assigned for each VU only in k6 Load Testing

Hi @mmm014,

You can see When parameterizing data, how do I not use the same data more than once in a test? - #2 by mark and in your case you need the uniqueNumber to just be __VU-1. edit: you need the -1 as arrays are indexed from 0 but __VU starts from 1.

Hope this helps you