Closed Synthoid closed 7 years ago
Allow sheets containing one column to export as an array of values, instead of an array of objects.
A sheet named "Formatting" with a single column with the key "Words" and the following values:
Until When While
Until
When
While
Would export as: (dashes added for formatting)
"Formatting" : [ --"Until", --"When", --"While" ]
"Formatting" : [
--"Until",
--"When",
--"While"
]
Instead of:
"Formatting" : [ --{ "Words" : "Until" }, --{ "Words" : "When" }, --{ "Words" : "While" }, ]
--{ "Words" : "Until" },
--{ "Words" : "When" },
--{ "Words" : "While" },
Supported as of version 37.
Allow sheets containing one column to export as an array of values, instead of an array of objects.
A sheet named "Formatting" with a single column with the key "Words" and the following values:
Until
When
While
Would export as: (dashes added for formatting)
"Formatting" : [
--"Until",
--"When",
--"While"
]
Instead of:
"Formatting" : [
--{ "Words" : "Until" },
--{ "Words" : "When" },
--{ "Words" : "While" },
]