Removing row number parent from export. #160
-
When I export as JSON, I get the following output:
I don't want the row number parent; however, I cannot work out how to do that. I mucked around with the |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments 6 replies
-
Can you post your original sheet (or just a screenshot) so I can see how it is formatted? Please note any settings you have enabled for the export too. |
Beta Was this translation helpful? Give feedback.
-
Are you wanting something like this? {
"Players": [
{
"Pos": 1,
"Player": "Player01",
"God": "Grul",
"Win": 4,
"Loss": 0,
"Souls": 20,
"Levels": 41,
"Rankings": 50
},
{
"Pos": 2,
"Player": "Player02",
"God": "Bruelin",
"Win": 3,
"Loss": 1,
"Souls": 17,
"Levels": 44,
"Rankings": 45.83
},
{
"Pos": 3,
"Player": "Player03",
"God": "Torin",
"Win": 3,
"Loss": 1,
"Souls": 17,
"Levels": 44,
"Rankings": 45.83
}
]
} |
Beta Was this translation helpful? Give feedback.
-
Hmm, would this be acceptable? {
"Tournaments": [
{
"id": "Tourney 01",
"Players": [
{
"Pos": 1,
"Player": "Player01",
"God": "Grul",
"Win": 4,
"Loss": 0,
"Souls": 20,
"Levels": 41,
"Rankings": 50
},
{
"Pos": 2,
"Player": "Player02",
"God": "Bruelin",
"Win": 3,
"Loss": 1,
"Souls": 17,
"Levels": 44,
"Rankings": 45.83
},
{
"Pos": 3,
"Player": "Player03",
"God": "Torin",
"Win": 3,
"Loss": 1,
"Souls": 17,
"Levels": 44,
"Rankings": 45.83
}
]
},
{
"id": "Tourney 02",
"Players": [
{
"Pos": 1,
"Player": "Player04",
"God": "Ista",
"Win": 3,
"Loss": 1,
"Souls": 17,
"Levels": 43,
"Rankings": 37.5
},
{
"Pos": 2,
"Player": "Player05",
"God": "Krognar",
"Win": 2,
"Loss": 2,
"Souls": 17,
"Levels": 42,
"Rankings": 33.33
},
{
"Pos": 3,
"Player": "Player06",
"God": "Tomas",
"Win": 2,
"Loss": 2,
"Souls": 17,
"Levels": 39,
"Rankings": 29.17
}
]
},
{
"id": "Tourney 03",
"Players": [
{
"Pos": 1,
"Player": "Player07",
"God": "Bruelin",
"Win": 2,
"Loss": 2,
"Souls": 14,
"Levels": 42,
"Rankings": 25
},
{
"Pos": 2,
"Player": "Player08",
"God": "Tomas",
"Win": 2,
"Loss": 2,
"Souls": 14,
"Levels": 41,
"Rankings": 20.83
},
{
"Pos": 3,
"Player": "Player09",
"God": "Grul",
"Win": 2,
"Loss": 2,
"Souls": 14,
"Levels": 36,
"Rankings": 16.67
}
]
}
]
} |
Beta Was this translation helpful? Give feedback.
-
Alternatively, you can do this: {
"Tournament 01": [
{
"Pos": 1,
"Player": "Player01",
"God": "Grul",
"Win": 4,
"Loss": 0,
"Souls": 20,
"Levels": 41,
"Rankings": 50
},
{
"Pos": 2,
"Player": "Player02",
"God": "Bruelin",
"Win": 3,
"Loss": 1,
"Souls": 17,
"Levels": 44,
"Rankings": 45.83
},
{
"Pos": 3,
"Player": "Player03",
"God": "Torin",
"Win": 3,
"Loss": 1,
"Souls": 17,
"Levels": 44,
"Rankings": 45.83
}
],
"Tournament 02": [
{
"Pos": 1,
"Player": "Player04",
"God": "Ista",
"Win": 3,
"Loss": 1,
"Souls": 17,
"Levels": 43,
"Rankings": 37.5
},
{
"Pos": 2,
"Player": "Player05",
"God": "Krognar",
"Win": 2,
"Loss": 2,
"Souls": 17,
"Levels": 42,
"Rankings": 33.33
},
{
"Pos": 3,
"Player": "Player06",
"God": "Tomas",
"Win": 2,
"Loss": 2,
"Souls": 17,
"Levels": 39,
"Rankings": 29.17
}
],
"Tournament 03": [
{
"Pos": 1,
"Player": "Player07",
"God": "Bruelin",
"Win": 2,
"Loss": 2,
"Souls": 14,
"Levels": 42,
"Rankings": 25
},
{
"Pos": 2,
"Player": "Player08",
"God": "Tomas",
"Win": 2,
"Loss": 2,
"Souls": 14,
"Levels": 41,
"Rankings": 20.83
},
{
"Pos": 3,
"Player": "Player09",
"God": "Grul",
"Win": 2,
"Loss": 2,
"Souls": 14,
"Levels": 36,
"Rankings": 16.67
}
]
} |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Ok, so if I click on "Export Contents as an Array", I achieve my original goal. [ All that is left to do is get the sheet name as a parent for the entire array. |
Beta Was this translation helpful? Give feedback.
-
You should just need to enable Export Sheet Arrays to get the second result. |
Beta Was this translation helpful? Give feedback.
You should just need to enable Export Sheet Arrays to get the second result.