I have a list of email addresses being returned by a query that I want to use to update a custom list. My goal is to have one value per row. If I add a utility block "add_to_list" to my playbook, then all the values get added in as a single row, with a separate value per column. I assume this is because the values being returned are seen as a single long comma-delimited list. What is the best practice for ensuring my playbook is updating the custom list with just one value per row, and adding new rows for each value in my list?
... View more