Similar to the other post Feed Me: How to format JSON for a table field. I'm looking for a solution on how to format the CSV field so I can import it as a table field. Basically I have a list of products and each product has multiple serial numbers which I'd like to have each as a row in the table. So for the serial number field I've tried things like:
"[12345, 54211, 55511]"
"[{12345}, {54211}, {55511}]"
"[{"12345"}, {"54211"}, {"55511"}]"
Any thoughts on the best way to approach this field?