Hello. I have a dataset that I fill with one column of data (amount of rows varies). I'm trying to figure out how to take each value in each row and append it to a string. So for example, if the dataset is full of one column of values 1111 in rwo 1, 2222 in row 2, 3333 in row 3, 4444 in row 4... I want the string to end up looking like "1111, 2222, 3333, 4444". I'm not too sure how to grab the values out of the dataset individually.
Is this possible?
Is this possible?