Adding an item to list from fusion table results

Hi Guys,

Need a little guidance to add results obtained from fusion table into listview.

I have two different lists.
1.Source
2.Destination.
Fusion table contains data for both the fields.
I want to add use single query to fetch these two fields but put the data into two different lists.
i.e. Source from fusion table should go into source list
and destination from fusion table’s query output should go into destination list.
AS OF NOW BOTH OF THE DETAILS ARE GETTING POPULATED INTO SINGLE LIST SEPERATED BY COMMA

convert the result into a list of lists using the list from csv table block, then use a for each in list loop to go through the result list one by one and add the first item of the sublist to the source list and the second item of the sublist to the destination list

Taifun

1 Like

Yup…
I got that…
Is there a way NOT to sort listitems?

the result from the fusiontable will be exactly in that order as you defined it in your SELECT statement
Taifun