You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MIT App Inventor Forum
You see the result on several lines because you received several lines. How to sort this out, depends on what you want. You could convert your response content to a list of lists using "list from csv table text (your response content)". Then, go through the list using one of the "for each" blocks, and put what you need in some global variable, which you then display.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mitappinv...@googlegroups.com
what you are receiving is a table in csv format... the delimiter for each item is a comma, the delimiter of each row is the invisble new line character \n
usually you convert the csv table into a list using the list from csv table block
sorting/filtering lists is no simple task... it would be easier to filter/sort before receiving the data on server side
you can find solutions about filtering/sorting lists after doing a search here in the forum
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MIT App Inventor Forum
Thanks for the help! I was able to do what I wanted. I used the list from csv table text to save the response to a variable. I then used the select list item list blocks to sort and display the list in a label.