Read Line two or more of a CSV

Hello all,

I wanted to make a while loop where every loop looked at a different row of my CSV.

I was unable to find a ${Row2}/!Line target/value or something similar.

Also is it possible to use a variable within a value? I.e. !Line${LN}

JSON

{
“Name”: “ttt”,
“CreationDate”: “2019-10-14”,
“Commands”: [
{
“Command”: “store”,
“Target”: “1”,
“Value”: “LC”
},
{
“Command”: “open”,
“Target”: “https://ui.vision/”,
“Value”: “”
},
{
“Command”: “while_v2”,
“Target”: “(${LC}<=10)”,
“Value”: “”
},
{
“Command”: “csvRead”,
“Target”: “readcsvtestdata.csv”,
“Value”: “”
},
{
“Command”: “echo”,

  "Target": "${!Col1}",
  "Value": "!Line2" #### This is where I would like to echo myline 2 value
},
{
  "Command": "storeEval",
  "Target": "(${LC}+1)",
  "Value": "LC"
},
{
  "Command": "end",
  "Target": "",
  "Value": ""
}

]
}

Thanks in advance!

You must use this command csvreadlinenumber to read your prefered line

https://ui.vision/docs#!csvreadlinenumber