Parentheses in label text

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?

blocks

1 Like

blocks (52)

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 :point_down:. 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 :point_down: and specify an index. The result is a text.

select list item

2 Likes