How to extract column from csv?

how to extract column from csv?
example i have csv file with 3 column and i want to separate each column and i want to show extracted column in list view how to do it? please help me …

Use list from csv table instead, because you have columns.
The structure will be like a list with multiple lists.

Then,
initialize a new list variable
for each item in the list
for each item2 in list
add item to list, item = item2

Finally set the list to list view elements.

2 Likes

Use for each item block