When I got rows from spreadsheet to label after clicking the button, I see this parentheses with the text. I do not want them. What must I do?
1 Like
4 Likes
The values
of SpreadSheet1.Got Row is a list. Parentheses is there because it a list. You can use join items using a space
as seperator . This will give a text output.
join items using separator¶
“Joins all elements in the specified list by the specified separator, producing text as a result.”
Moreover, if you want to pick a particular item in the values
list from .Got Row
, stick the values
in the list socket and specify an index. The result is a text.
select list item¶
2 Likes