I’ve got a spreadsheet cell that has 3 to 5 individual phone numbers in them. Is there a way to use Make to send individual texts without breaking them out into individual cells?
1 Like
Yes, we can split them based on the separator. Splitting will change their data type to array and you can iterate over.
@Community_Gearbox Use the split() function to split each value based on a seperator.
Then like @Mohamed_Jahar says you can use the Iterator to iterate over each item and do something with it.
1 Like