CSV Creator Error

I am using 1T csv creator to create a csv export function. However, if the number of data to be output is too large, it causes an error on the way. Can anyone come up with any solutions?


1 Like

Hi @qareer I was able to solve it by building the Final JSON on each step and removing the list of texts and list of things on each step and then searching for them and building the list of texts on each next step. So rather than building the Final JSON as the very last step from a massive list of things, append to the previous iteration of the JSON with the next one and so on. You also have to append β€œ,” with each addition to the Final JSON but not add a β€œ,” on the last addition.

However, the error you share here looks like it is in the syntax of building the JSON meaning that a comma is missing or misplaced.

1 Like