Hi @v-micsh-msft is this something you can help me with?
I am doing an experiment where the items for a dropdown box as stored as string... ie
"ItemA, Item B, Item C"
I need to convert them to table format (ie ["ItemA", "itemB", "ItemC"]. I have not found a way to do this inside PowerApps. So having played around with making my own webservices, I decided to do something really crazy and make a Flow that converts a string to a JSON array.
I did this via setting up Flow to be triggered from a Request trigger and I send a response action back. I then made a swagger file for PowerApps to consume and registered the custom connector.
When I call this webservice outside of PA, flow returns an array...

I then tried this:
Set(blah,StringtoJSON.StringtoJSON("AA,BB,CC"))
The net result of this was that my variable "Blah" was seen by PowerApps as a table, but it was empty.
So my question is twofold. First, can I dnamically generate a table for a dropdown to consume inside PowerApps? Second, if you put aside the fact my workaround is pretty insane and I'd likely not do it in prod, nevertheless can you see a reason why PA would be getting an empty value?
