Hello,
Sorry for the lack of clarity in my question but I have posted screenshots of the value from the TinyWebDB and what this value is converted to by using list from csv row. I have posted my original nested list so you can see what the final structure of the converted list should be.
So basically what I want the program to do is when the value from the TinyWebDB is fetched it needs to be converted to a form of the original nested list so the current program can work. Since there is no function in AppInventor that can do that, I have decided to convert it to a list from csv row. I need to know now how I
can change this list into the original structure of the nested list.
The original nested list, this is how the values from the TinyWebDB should fit into at the end; the values include the Subject, Number of Computers available currently and the maximum number of computers available, respectively.

This is the part of the program that deals with retrieving the TinyWebDB values and turning them into the list:

This is the value received straight from the TinyWebDB:

This is when the list to csv row function has been used to create a single list from the TinyWebDB value:

So far the program can fetch from the database and then convert the TinyWebDb value into a list from csv row, this list is stored in temp_list and now I need to organise it into its original nested structure into a list called test_list. The organising should call upon the procedure called Build_List and in this procedure should be a for loop or a loop which can place the items from the temp_list into the correct format into the test_list.
I think a For Loop needs to be used in order for the program to work:

Thank you,
Goel