I see,

I’m really new,

Is there a video that I could watch for the format as text. As I am heavily dependent on it. or the sample of page which i can refer to. like the list shift array

Basically, what I want is the function to go through all of the database of the whole table and put it in one readable text or json. Which will automatically change when the data is changed(or Updated) and read by the api (ChatGPT).

Couldn’t find dynamic expression that match my need, or just haven’t able to manipulate the function to my liking.

I’ve used the :format to text, but I couldn’t make it run. Tho currently, its seems as the closest answer

My current solution is: use each item item to list out all of the columns. But I need all rows and columns in a more readable format
.

The problem with :each item item is that the data will be like:

1,2,3,itemA,itemB,itemC,codeA,codeB,codeC,…

while I want:
1,itemA,codeA,2,itemB,codeB,…