[Solved] How to display rows from a table in thunkable x

k. looks like you need a list viewer. and to throw all rows though a loop. see my screenshot below.

first i put all rows into a variable. i send that variable to be filtered. i flter based on certain properties. think about a property as a column position in a given row.

when you put ‘all rows’ into the loop, the loop looks at the entire thing 1 row at a time. then when you say look at property X, you are really talking about column X in the current row that the loop is looking at, starting with the first.

then at the bottom, i take out the particular ‘properties’ of object (row) j. and store them into a variable as a list.

i then can display that list into a list vieweer.