How do I export all the line item properties of a Shopify order in a single column in Name: Value format separated by a line break?

You can use the formula below in the Calculated Fields section of the Data Settings in EZ Exporter to do this:

join_lists(get_attribute_value({{ line_items.properties }}, "name", return_raw_results=True), get_attribute_value({{ line_items.properties }}, "value", return_raw_results=True), group_separator="\n")

The output will look something like this:


Related Articles:


App: EZ Exporter

Tags: line item properties, advanced features, shopify orders, line item custom options