Excel Export from array

Using exporter to export data to Excel table and it works just fine.

But I've a properties column (array) structured like that:

[
    {'building': 'building name', 'building_number': '1' },
    {'building': 'building name', 'building_number': '2' },
    {'building': 'building name', 'building_number': '3' }
]

is there a way to export array to Excel table to get excel columns like so:

building name | building name
      1              2
Was this page helpful?