Show csv values in labels

hello, i want to display the values of my comma separated csv file into labels, here how the csv file looks

1 Like

Use the file component to read the file, in the GotText ecent convert your text into a list of lists using the list from csv table block
Now you have the header row in list item 1 and the data row in list item2
Then use select list item blocks to select each value from the data row

Taifun

Search this board for YAML, for how to make it all readable.

Have you succeeded?

You seem to have a similar problem
What about elaborating?

Taifun

Yeah, like a year ago, totally forgot about this🤣. How do i close it?

1 Like

You might want to provide a screenshot of your solution to help @paz

Taifun

1 Like

Screenshot 2025-08-10 145817


Screenshot 2025-08-10 150029
this is basically what i did. i get the csv file from google drive

1 Like

Single column csv tables are better off treated as \n delimited lists.

Instead of doing a csv table conversion on the responseContent, send it through a Split list at \n block to get a simple list, where you can select item 4 to get your 33.3 temperature value.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.