New Functions: to_list() and search_list() Now Available in EZ Exporter
We've recently added 2 new functions which can be used in the formulas of our app, EZ Exporter. These functions could come in handy for fields such as tags where you may need to filter them based on specific values.
to_list(data, separator=",")
Convert text data into a list/array.
For example, a tags field data may look something like this: "men, xxl, sale"
Applying this function like this:
to_list({{ tags }})
Will return this result: ['men', 'xxl', 'sale']
This is …
Read more