This is a PowerApp Component Custom Function JsonToTable(json As String) -> Table
that is able to transform a JSON Object in an equivalent PowerFx Table
Considering the JSON below as input
{
"bsc_field1": "value1",
"bsc_field2": "value2",
"bsc_field3": "value3"
}
after call of JsonToTable
it will be transformed in the following PoweFx Table
Name Value bsc_field1 value1 bsc_field2 value2 bsc_field3 value3
- Inspired by Matthew Devaney article