Hey there 🙂
New day new problem... 🤣
Settings (the working part):
- SharePoint list with dropdowns, lookups, ect...
- Using this list in PowerApps in a gallery
- saving data from this gallery in a collection:
ClearCollect(Collection1; ShowColumns(Gallery1.AllItems;"Besteller";"Verwendung"))
- parsing this via PowerAutomate in a CSV file
Exporttest.Run(JSON(Collection1;JSONFormat.IndentFour))

Everything fine!
Now to my problem: The output in my CSV file is weired.

Instead of only "Jana" the flow saves "{Value":"Jana"} in my file.
Why? Because it is an object?
{
"type": "array",
"items": {
"type": "object",
"properties": {
"Besteller": {
"type": "object",
"properties": {
"Value": {
"type": "string"
}
}
},
"Verwendung": {
"type": "string"
}
},
"required": [
"Besteller",
"Verwendung"
]
}
}
Is there any way to "fix" that? I think somewhere I made a mistake, but where... 🤔