<I was looking for “the number of Rows” max, and “the number of columns” max, from the csv. (dynamic link)
const data = footage(“Values.csv”).sourceText.split(/\n/);
const dataFirstRow = data[0].split(“,”);
//data.length-2 // number of Row
//dataFirstRow.length-1 // number of Columns
Polo