I have two lists, List A and List B.
list A has a single line of text field where the user puts in comma separated values. I can do a split function on this to count how many values the user put in that field, but I need to create a new record for each of those values
so if list a has a column of string "a,b,c", i need to make in list b three records, "a,"b","c", titled that respectively.
i use for each and the items property but im kind of lost on how to grab each element of the arrays value once i store it in an array?