Your csv text file is not a csv text.
The C in CSV stands for Comma (,).
You used semicolons (;) in your text file contents, instead.
So you have two possible fixes:
- Generate the text file with commas instead of semicolons, or
- Replace all the semicolons with commas BEFORE feeding the csv table conversion block.
(This is the second post in half an hour I have seen where people toss garbage into their poor suffering csv table conversion block mouths.)
A csv table is a list of lists. If you want to select fields from the table, use nested select-item blocks.
Do not run rows thru text manipulation blocks, or they will flatten them like a steam roller into text, losing their list capabilities.
ABG