How do I export all the note attributes of a Shopify order in a single column in Name: Value format separated by a line break?
Note: "Note Attributes" is the same as "Cart Attributes". These attributes are displayed under the "Additional Details" section of the Shopify Admin's order details page.
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({{ note_attributes }}, "name", return_raw_results=True), get_attribute_value({{ note_attributes }}, "value", return_raw_results=True), group_separator="\n")
The output will look something like this:
Related Articles:
App: EZ Exporter
