how can i convert from this json-format:
{
"Key1": {
"Value": "123",
"Value": "456",
},
"Key2" : {
"Value": "789",
},
"Key3": {
"Value": "000",
},
"Key4" : {
"Value": "111",
}
}
to this csv-format:
|Col A|Col B|Col C|Col D|Col E|
Row 1|123 |456 |789 |000 |111 |
I want to ignore the keys and just add the values to the csv and all values should be in one row...I don´t need any headers or index. just the values