I have some data that comes through as line items:
Example
Tags Alpha, Beta, Gamma, Delta
The number of line items is not fixed and will vary with each trigger.
In subsequent steps, Zapier is reading these a line items (example below), which is great for some of the steps I want to take later on.
1 Alpha
2 Beta
3 Gamma
4 Delta
I want to wrap each line item in quotes so that the end result is
1 “Alpha”
2 “Beta”
3 “Gamma”
4 “Delta”
Or even better, this output:
Output “Alpha”, “Beta”, “Gamma”, “Delta”
How can I achieve this?
I’ve been poking around with Formatter options and documentation, but I can’t quite figure it out.