You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"FAQs": {
"title_1": {
"option_1": "what is this?",
"option_2": "what is that",
"option_3": "what are you"
},
"text_1": {
"option_1": "something",
"option_2": "something else",
"option_3": "xyz"
},
"title_2": {
"option_1": "who are they",
"option_2": "who are we",
"option_3": "who are you"
},
"text_2": {
"option_1": "people",
"option_2": "us",
"option_3": "me"
}
}
}
This is great, however with more complex content, i.e. as we get into title_1345 it is getting hard to manage. I'm looking for a way of not numbering the text or title fields so it could be more like this:
key
title
text
title
text
Whatever I try though I get variations on this:
"FAQs": {
"title": {
"option_1": "who are they",
"option_2": "who are we",
"option_3": "who are you"
},
"text": {
"option_1": "people",
"option_2": "us",
"option_3": "me"
}
}
}
Which totally makes sense. I have tried [title] and [text], nested array prefix NAR_title & NAR_text but nothing I try seems to be doing the trick. The output I would like is something like:
"FAQs": {
"title": [{
"option_1": "what is this?",
"option_2": "what is that",
"option_3": "what are you"
},{
"option_1": "who are they",
"option_2": "who are we",
"option_3": "who are you"
}],
"text": [{
"option_1": "something",
"option_2": "something else",
"option_3": "xyz"
},
{
"option_1": "people",
"option_2": "us",
"option_3": "me"
}]
}
}
Is there a labelling trick I am missing that would allow me to do this? Love the plugin so much, thank you so much for working on it.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have a sheet like this:
When I export it I get the following:
This is great, however with more complex content, i.e. as we get into
title_1345
it is getting hard to manage. I'm looking for a way of not numbering thetext
ortitle
fields so it could be more like this:Whatever I try though I get variations on this:
Which totally makes sense. I have tried
[title]
and[text]
, nested array prefixNAR_title
&NAR_text
but nothing I try seems to be doing the trick. The output I would like is something like:Is there a labelling trick I am missing that would allow me to do this? Love the plugin so much, thank you so much for working on it.
Beta Was this translation helpful? Give feedback.
All reactions