This repository was archived by the owner on Apr 5, 2018. It is now read-only.

Description
I'm exporting values for multiple fields, some plain text (which works fine), and some table fields. In the CSV, for any table fields, the values of each row are added to the CSV cell twice.
For example, if I have a table field such as this:
| Length |
Width |
Height |
| 1 |
2 |
3 |
...it would export to the CSV like this:
1, 2, 3, 1, 2, 3
Am I missing a step, or can you give me any instruction on how to fix this? Thanks!