Extract Max number from a column and feed it to a for loop in the same jsl script
My JSL script has 3 parts. In the first part, I am creating a numeric column (Column A) with 100 rows filled with random integers between 50-1000.In the 2nd part, I am extracting the max number in Column A and storing it to a variable i.In the 3rd part, I am using i to create a for loop that creates i number of new columns in the same table. How can I do this? It seems I can store the data in i bu...