I'm trying to split text to multiple items that I can use in different fields in another step. It works fine for names but not email addresses for some reason.
I tried this and it worked for a simple array of Full Names - https://community.zapier.com/ask-the-community-3/line-item-usage-358 - but I get a different output structure for email addresses.
From an Airtable record with a lookup array of Names mJane Smith, John Smith] it returns:
output__Item 1: Jane Smith
output__Item 2: John Smith
which is exactly what what I want it to return.
Unfortunately, when I try the same formatting steps for email addresses in an array I get the following output where the item numbers are the same:
output:
0:
Item 1: janesmith@email.com
1:
Item 1: johnsmith@email.com
The problem is the are the same Item number so when I try to use them as inputs later on in the workflow as separte fields, the only selection I can use from this step is 'Output Item 1: "janesmith@email.com, johnsmith@email.com"' (an array, not separate items).
Any thoughts?