I couldn't find how i could create a string from table elements, so I wrote this function
It seems like it should work, but when I try to use it with thisCode:function tableToString(TABLE, STRING, SEPARATOR) tableLength = Table.Count(TABLE); --create blank string STRING = ""; for count = 1, tableLength do --add table element to string and insert a space at the end STRING = STRING..TABLE[count].." "; end return STRING; end
I get an error that myString isn't a string.Code:myTable = {"one", "two", "three", "four"}; tableToString(myTable, myString, " "); Paragraph.SetText("Paragraph1", myString);
any ideas/tips/help/!


