Dec 31, 2022 11:44 AM
Hi there,
I'm trying to utilize Airtable to manage Shopify Metafields (among other things), but am striking out with doing this in what I believe to be the most logical way.
I've configured a field (column) as "multiple select" with preconfigured options (the array). This ensures we're dealing with legitimate values.
Syncing to Shopify, through the use of AirPower, requires the metafields to be in the format:
["MF1","MF2","MF3"]
I've used ARRAYJOIN to convert the array to a string in a separate field, but am stumped at actually formatting the square brackets and quotes.
Suggestions?
TIA,
Jeff
Solved! Go to Solution.
Jan 01, 2023 04:43 AM
Try something like:
'["' &
SUBSTITUTE(
Data,
', ',
'", "'
) &
'"]'
Jan 01, 2023 04:43 AM
Try something like:
'["' &
SUBSTITUTE(
Data,
', ',
'", "'
) &
'"]'
Jan 01, 2023 09:04 AM
Thank you very much Adam!
This worked perfectly.
Oct 26, 2024 09:54 AM